Rename kwin to twin (part 1 of 2)

pull/1/head
Timothy Pearson 13 years ago
parent 0b890de957
commit e112a24781

@ -4,19 +4,19 @@ SUBDIRS = config
KDE_CXXFLAGS = -DQT_PLUGIN KDE_CXXFLAGS = -DQT_PLUGIN
INCLUDES = $(all_includes) -I$(kde_includes)/kwin INCLUDES = $(all_includes) -I$(kde_includes)/twin
kwindir = $(kde_datadir)/kwin/ twindir = $(kde_datadir)/twin/
kwin_DATA = crystal.desktop twin_DATA = crystal.desktop
noinst_HEADERS = crystalclient.h crystalbutton.h imageholder.h buttonimage.h tiles.h overlays.h noinst_HEADERS = crystalclient.h crystalbutton.h imageholder.h buttonimage.h tiles.h overlays.h
kde_module_LTLIBRARIES = kwin3_crystal.la kde_module_LTLIBRARIES = twin3_crystal.la
kwin3_crystal_la_SOURCES = crystalclient.cc myrootpixmap.cc crystalbutton.cpp \ twin3_crystal_la_SOURCES = crystalclient.cc myrootpixmap.cc crystalbutton.cpp \
imageholder.cpp buttonimage.cpp tiles.h overlays.h imageholder.cpp buttonimage.cpp tiles.h overlays.h
kwin3_crystal_la_LIBADD = $(kde_libraries)/libtdecorations.la $(LIB_QT) $(LIB_TDEUI) twin3_crystal_la_LIBADD = $(kde_libraries)/libtdecorations.la $(LIB_QT) $(LIB_TDEUI)
kwin3_crystal_la_LDFLAGS = -module $(all_libraries) $(KDE_PLUGIN) $(LIB_QT) $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx -lDCOP twin3_crystal_la_LDFLAGS = -module $(all_libraries) $(KDE_PLUGIN) $(LIB_QT) $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx -lDCOP
kwin3_crystal_la_METASOURCES = AUTO twin3_crystal_la_METASOURCES = AUTO
CLEANFILES = tiles.h overlays.h CLEANFILES = tiles.h overlays.h
DISTCLEANFILES = $(kwin3_crystal_la_METASOURCES) DISTCLEANFILES = $(twin3_crystal_la_METASOURCES)

@ -6,17 +6,17 @@ INCLUDES = $(all_includes)
noinst_HEADERS = crystalconfig.h noinst_HEADERS = crystalconfig.h
kde_module_LTLIBRARIES = kwin_crystal_config.la kde_module_LTLIBRARIES = twin_crystal_config.la
kwin_crystal_config_la_SOURCES = configdialog.ui infodialog.ui crystalconfig.cc crystalconfig.h twin_crystal_config_la_SOURCES = configdialog.ui infodialog.ui crystalconfig.cc crystalconfig.h
kwin_crystal_config_la_LDFLAGS = -module $(all_libraries) $(KDE_PLUGIN) $(LIB_TDECORE) twin_crystal_config_la_LDFLAGS = -module $(all_libraries) $(KDE_PLUGIN) $(LIB_TDECORE)
kwin_crystal_config_la_LIBADD = $(LIB_TDEUI) $(LIB_KIO) $(LIB_QT) twin_crystal_config_la_LIBADD = $(LIB_TDEUI) $(LIB_KIO) $(LIB_QT)
kwin_crystal_config_la_METASOURCES = AUTO twin_crystal_config_la_METASOURCES = AUTO
DISTCLEANFILES = $(kwin_crystal_config_la_METASOURCES) DISTCLEANFILES = $(twin_crystal_config_la_METASOURCES)
crystalconfig.cc: configdialog.h infodialog.h crystalconfig.cc: configdialog.h infodialog.h
messages: messages:
$(XGETTEXT) *.cpp -o $(podir)/kwin_crystal_config.pot $(XGETTEXT) *.cpp -o $(podir)/twin_crystal_config.pot
METASOURCES = AUTO METASOURCES = AUTO

@ -48,7 +48,7 @@
CrystalConfig::CrystalConfig(KConfig*, TQWidget* parent) CrystalConfig::CrystalConfig(KConfig*, TQWidget* parent)
: TQObject(parent), config_(0), dialog_(0) : TQObject(parent), config_(0), dialog_(0)
{ {
config_ = new KConfig("kwincrystalrc"); config_ = new KConfig("twincrystalrc");
dialog_ = new ConfigDialog(parent); dialog_ = new ConfigDialog(parent);
dialog_->show(); dialog_->show();

@ -101,7 +101,7 @@
<enum>PaletteBackground</enum> <enum>PaletteBackground</enum>
</property> </property>
<property name="text"> <property name="text">
<string>Crystal kwin decoration theme, <string>Crystal twin decoration theme,
Sascha Hlusiak &lt;spam84@nurfuerspam.de&gt;, 2004-2007. Sascha Hlusiak &lt;spam84@nurfuerspam.de&gt;, 2004-2007.
You may look for the most recent version at kde-look.org:</string> You may look for the most recent version at kde-look.org:</string>

@ -2,4 +2,4 @@
[Desktop Entry] [Desktop Entry]
Encoding=UTF-8 Encoding=UTF-8
Name=Crystal Name=Crystal
X-KDE-Library=kwin3_crystal X-KDE-Library=twin3_crystal

@ -32,7 +32,7 @@
#include <tqapplication.h> #include <tqapplication.h>
#include <tqimage.h> #include <tqimage.h>
#include <tqpopupmenu.h> #include <tqpopupmenu.h>
#include <kwin.h> #include <twin.h>
#include <kprocess.h> #include <kprocess.h>
#include "crystalclient.h" #include "crystalclient.h"
@ -186,7 +186,7 @@ void setupOverlay(WND_CONFIG *cfg,int mode,TQString filename)
bool CrystalFactory::readConfig() bool CrystalFactory::readConfig()
{ {
// create a config object // create a config object
KConfig config("kwincrystalrc"); KConfig config("twincrystalrc");
config.setGroup("General"); config.setGroup("General");
TQColor c; TQColor c;

@ -23,7 +23,7 @@
#define _IMAGEHOLDER_INCLUDED_ #define _IMAGEHOLDER_INCLUDED_
#include <kwinmodule.h> #include <twinmodule.h>
#include "myrootpixmap.h" #include "myrootpixmap.h"
struct WND_CONFIG; struct WND_CONFIG;

@ -21,7 +21,7 @@
#include <kapplication.h> #include <kapplication.h>
#include <kimageeffect.h> #include <kimageeffect.h>
#include <kpixmapio.h> #include <kpixmapio.h>
#include <kwinmodule.h> #include <twinmodule.h>
#include <kdebug.h> #include <kdebug.h>
#include <netwm.h> #include <netwm.h>
#include <dcopclient.h> #include <dcopclient.h>

@ -19,7 +19,7 @@
</general> </general>
<kdevautoproject> <kdevautoproject>
<general> <general>
<activetarget>client/kwin3_crystal.la</activetarget> <activetarget>client/twin3_crystal.la</activetarget>
<useconfiguration>default</useconfiguration> <useconfiguration>default</useconfiguration>
</general> </general>
<run> <run>

Loading…
Cancel
Save