Rename a number of classes to enhance compatibility with KDE4

remotes/gitea/gg-tdeadmin-kcron
Timothy Pearson 11 years ago
parent 58cb2c2c17
commit 189e536f1a

@ -33,7 +33,7 @@
const int KTApp::statusMessage (1001); const int KTApp::statusMessage (1001);
KTApp::KTApp() : KMainWindow(0) KTApp::KTApp() : TDEMainWindow(0)
{ {
config=kapp->config(); config=kapp->config();
@ -56,8 +56,8 @@ KTApp::KTApp() : KMainWindow(0)
view->disableIcons(); view->disableIcons();
//Connections //Connections
KPopupMenu *editMenu = static_cast<KPopupMenu*>(guiFactory()->container("edit", this)); TDEPopupMenu *editMenu = static_cast<TDEPopupMenu*>(guiFactory()->container("edit", this));
KPopupMenu *settingsMenu = static_cast<KPopupMenu*>(guiFactory()->container("settings", this)); TDEPopupMenu *settingsMenu = static_cast<TDEPopupMenu*>(guiFactory()->container("settings", this));
connect(editMenu,TQT_SIGNAL(highlighted(int)),this,TQT_SLOT(statusEditCallback(int))); connect(editMenu,TQT_SIGNAL(highlighted(int)),this,TQT_SLOT(statusEditCallback(int)));
connect(settingsMenu,TQT_SIGNAL(highlighted(int)),this,TQT_SLOT(statusSettingsCallback(int))); connect(settingsMenu,TQT_SIGNAL(highlighted(int)),this,TQT_SLOT(statusSettingsCallback(int)));
@ -128,16 +128,16 @@ void KTApp::setupActions()
KStdAction::cut(TQT_TQOBJECT(this), TQT_SLOT(slotEditCut()), actionCollection()); KStdAction::cut(TQT_TQOBJECT(this), TQT_SLOT(slotEditCut()), actionCollection());
KStdAction::copy(TQT_TQOBJECT(this), TQT_SLOT(slotEditCopy()), actionCollection()); KStdAction::copy(TQT_TQOBJECT(this), TQT_SLOT(slotEditCopy()), actionCollection());
KStdAction::paste(TQT_TQOBJECT(this), TQT_SLOT(slotEditPaste()), actionCollection()); KStdAction::paste(TQT_TQOBJECT(this), TQT_SLOT(slotEditPaste()), actionCollection());
(void)new KAction(i18n("&New..."), KStdAccel::openNew(), TQT_TQOBJECT(this),TQT_SLOT(slotEditNew()),actionCollection(),"edit_new"); (void)new TDEAction(i18n("&New..."), TDEStdAccel::openNew(), TQT_TQOBJECT(this),TQT_SLOT(slotEditNew()),actionCollection(),"edit_new");
//I don't like this KStdAccel::open() for modifying, but I'm just porting this to xmlui //I don't like this TDEStdAccel::open() for modifying, but I'm just porting this to xmlui
(void)new KAction(i18n("M&odify..."), KStdAccel::open(), TQT_TQOBJECT(this),TQT_SLOT(slotEditModify()),actionCollection(),"edit_modify"); (void)new TDEAction(i18n("M&odify..."), TDEStdAccel::open(), TQT_TQOBJECT(this),TQT_SLOT(slotEditModify()),actionCollection(),"edit_modify");
(void)new KAction(i18n("&Delete"), 0, TQT_TQOBJECT(this),TQT_SLOT(slotEditDelete()),actionCollection(),"edit_delete"); (void)new TDEAction(i18n("&Delete"), 0, TQT_TQOBJECT(this),TQT_SLOT(slotEditDelete()),actionCollection(),"edit_delete");
(void)new KAction(i18n("&Enabled"), 0, TQT_TQOBJECT(this),TQT_SLOT(slotEditEnable()),actionCollection(),"edit_enable"); (void)new TDEAction(i18n("&Enabled"), 0, TQT_TQOBJECT(this),TQT_SLOT(slotEditEnable()),actionCollection(),"edit_enable");
(void)new KAction(i18n("&Run Now"), 0, TQT_TQOBJECT(this),TQT_SLOT(slotEditRunNow()),actionCollection(),"edit_run"); (void)new TDEAction(i18n("&Run Now"), 0, TQT_TQOBJECT(this),TQT_SLOT(slotEditRunNow()),actionCollection(),"edit_run");
//Settings menu //Settings menu
(void)new KAction(i18n("Show &Toolbar"), 0, TQT_TQOBJECT(this),TQT_SLOT(slotViewToolBar()),actionCollection(),"show_toolbar"); (void)new TDEAction(i18n("Show &Toolbar"), 0, TQT_TQOBJECT(this),TQT_SLOT(slotViewToolBar()),actionCollection(),"show_toolbar");
(void)new KAction(i18n("Show &Statusbar"), 0, TQT_TQOBJECT(this),TQT_SLOT(slotViewStatusBar()),actionCollection(),"show_statusbar"); (void)new TDEAction(i18n("Show &Statusbar"), 0, TQT_TQOBJECT(this),TQT_SLOT(slotViewStatusBar()),actionCollection(),"show_statusbar");
} }
@ -160,7 +160,7 @@ void KTApp::saveOptions()
void KTApp::readOptions() void KTApp::readOptions()
{ {
config->setGroup(TQString("General Options")); config->setGroup(TQString("General Options"));
KPopupMenu *settingsMenu = static_cast<KPopupMenu*>(guiFactory()->container("settings", this)); TDEPopupMenu *settingsMenu = static_cast<TDEPopupMenu*>(guiFactory()->container("settings", this));
// bar status settings // bar status settings
bool bViewToolbar = config->readBoolEntry(TQString("Show Toolbar"), true); bool bViewToolbar = config->readBoolEntry(TQString("Show Toolbar"), true);
@ -174,10 +174,10 @@ void KTApp::readOptions()
statusBar()->hide(); statusBar()->hide();
// bar position settings // bar position settings
KToolBar::BarPosition tool_bar_pos; TDEToolBar::BarPosition tool_bar_pos;
tool_bar_pos=(KToolBar::BarPosition) tool_bar_pos=(TDEToolBar::BarPosition)
config->readNumEntry(TQString("ToolBarPos"), config->readNumEntry(TQString("ToolBarPos"),
KToolBar::Top); TDEToolBar::Top);
toolBar()->setBarPos(tool_bar_pos); toolBar()->setBarPos(tool_bar_pos);
@ -276,7 +276,7 @@ void KTApp::slotFileQuit()
void KTApp::slotEdit(const TQPoint& qp) void KTApp::slotEdit(const TQPoint& qp)
{ {
KPopupMenu *editMenu = static_cast<KPopupMenu*>(guiFactory()->container("edit", this)); TDEPopupMenu *editMenu = static_cast<TDEPopupMenu*>(guiFactory()->container("edit", this));
editMenu->exec(qp, 0); editMenu->exec(qp, 0);
} }
@ -325,7 +325,7 @@ void KTApp::slotEditDelete()
void KTApp::slotEditEnable() void KTApp::slotEditEnable()
{ {
KPopupMenu *editMenu = static_cast<KPopupMenu*>(guiFactory()->container("edit", this)); TDEPopupMenu *editMenu = static_cast<TDEPopupMenu*>(guiFactory()->container("edit", this));
if (editMenu->isItemChecked(editMenu->idAt(8))) if (editMenu->isItemChecked(editMenu->idAt(8)))
{ {
slotStatusMsg(i18n("Disabling entry...")); slotStatusMsg(i18n("Disabling entry..."));
@ -355,7 +355,7 @@ void KTApp::slotViewToolBar()
else else
toolBar()->show(); toolBar()->show();
KPopupMenu *settingsMenu = static_cast<KPopupMenu*>(guiFactory()->container("settings", this)); TDEPopupMenu *settingsMenu = static_cast<TDEPopupMenu*>(guiFactory()->container("settings", this));
settingsMenu->setItemChecked(settingsMenu->idAt(0),toolBar()->isVisible()); settingsMenu->setItemChecked(settingsMenu->idAt(0),toolBar()->isVisible());
slotStatusMsg(i18n("Ready.")); slotStatusMsg(i18n("Ready."));
@ -368,7 +368,7 @@ void KTApp::slotViewStatusBar()
else else
statusBar()->show(); statusBar()->show();
KPopupMenu *settingsMenu = static_cast<KPopupMenu*>(guiFactory()->container("settings", this)); TDEPopupMenu *settingsMenu = static_cast<TDEPopupMenu*>(guiFactory()->container("settings", this));
settingsMenu->setItemChecked(settingsMenu->idAt(1),statusBar()->isVisible()); settingsMenu->setItemChecked(settingsMenu->idAt(1),statusBar()->isVisible());
slotStatusMsg(i18n("Ready.")); slotStatusMsg(i18n("Ready."));
@ -388,7 +388,7 @@ void KTApp::slotStatusHelpMsg(const TQString & text)
void KTApp::statusEditCallback(int id_) void KTApp::statusEditCallback(int id_)
{ {
KPopupMenu *editMenu = static_cast<KPopupMenu*>(guiFactory()->container("edit", this)); TDEPopupMenu *editMenu = static_cast<TDEPopupMenu*>(guiFactory()->container("edit", this));
int index = editMenu->indexOf(id_); int index = editMenu->indexOf(id_);
switch (index) { switch (index) {
case menuEditNew: case menuEditNew:
@ -414,7 +414,7 @@ void KTApp::statusEditCallback(int id_)
void KTApp::statusSettingsCallback(int id_) void KTApp::statusSettingsCallback(int id_)
{ {
KPopupMenu *settingsMenu = static_cast<KPopupMenu*>(guiFactory()->container("settings", this)); TDEPopupMenu *settingsMenu = static_cast<TDEPopupMenu*>(guiFactory()->container("settings", this));
int index = settingsMenu->indexOf(id_); int index = settingsMenu->indexOf(id_);
switch (index) { switch (index) {
case menuSettingsShowToolBar: case menuSettingsShowToolBar:
@ -456,7 +456,7 @@ void KTApp::slotEnableRunNow(bool state)
void KTApp::slotEnableEnabled(bool state) void KTApp::slotEnableEnabled(bool state)
{ {
KPopupMenu *editMenu = static_cast<KPopupMenu*>(guiFactory()->container("edit", this)); TDEPopupMenu *editMenu = static_cast<TDEPopupMenu*>(guiFactory()->container("edit", this));
editMenu->setItemChecked(editMenu->idAt(8),state); editMenu->setItemChecked(editMenu->idAt(8),state);
} }

@ -18,7 +18,7 @@
#include <kmainwindow.h> #include <kmainwindow.h>
class KAction; class TDEAction;
class TQString; class TQString;
class KTView; class KTView;
class CTHost; class CTHost;
@ -31,7 +31,7 @@ class CTHost;
* Provides main window handling, session management and keyboard * Provides main window handling, session management and keyboard
* acceleration. * acceleration.
*/ */
class KTApp : public KMainWindow class KTApp : public TDEMainWindow
{ {
Q_OBJECT Q_OBJECT

@ -21,7 +21,7 @@
#include <tdeprint/kprintdialogpage.h> #include <tdeprint/kprintdialogpage.h>
class TQCheckBox; class TQCheckBox;
class KAccel; class TDEAccel;
/** /**
*Give the user the option to print the crontab file. *Give the user the option to print the crontab file.

@ -397,10 +397,10 @@ KTTask::KTTask(CTTask* _cttask, const TQString & _caption)
} }
// key acceleration // key acceleration
key_accel = new KAccel(this); key_accel = new TDEAccel(this);
key_accel->insert(KStdAccel::Open, TQT_TQOBJECT(this), TQT_SLOT(slotOK())); key_accel->insert(TDEStdAccel::Open, TQT_TQOBJECT(this), TQT_SLOT(slotOK()));
key_accel->insert(KStdAccel::Close, TQT_TQOBJECT(this), TQT_SLOT(slotCancel())); key_accel->insert(TDEStdAccel::Close, TQT_TQOBJECT(this), TQT_SLOT(slotCancel()));
key_accel->insert(KStdAccel::Quit, TQT_TQOBJECT(this), TQT_SLOT(slotCancel())); key_accel->insert(TDEStdAccel::Quit, TQT_TQOBJECT(this), TQT_SLOT(slotCancel()));
key_accel->readSettings(); key_accel->readSettings();
setFixedSize( minimumSize() ); setFixedSize( minimumSize() );

@ -21,7 +21,7 @@ class TQLineEdit;
class TQCheckBox; class TQCheckBox;
class TQButtonGroup; class TQButtonGroup;
class TQPushButton; class TQPushButton;
class KAccel; class TDEAccel;
class CTTask; class CTTask;
@ -133,7 +133,7 @@ private:
* Key accelerator. * Key accelerator.
*/ */
KAccel* key_accel; TDEAccel* key_accel;
// Widgets. // Widgets.

@ -85,7 +85,7 @@ KDatMainWindow* KDatMainWindow::getInstance()
#define KDAT_HORIZONTAL_LAYOUT #define KDAT_HORIZONTAL_LAYOUT
KDatMainWindow::KDatMainWindow() KDatMainWindow::KDatMainWindow()
: KMainWindow(0), _destroyed( FALSE ) : TDEMainWindow(0), _destroyed( FALSE )
{ {
#ifdef KDAT_HORIZONTAL_LAYOUT /* 2002-01-20 LEW */ #ifdef KDAT_HORIZONTAL_LAYOUT /* 2002-01-20 LEW */
resize( 600, 600 ); /* was 600 by 400 */ resize( 600, 600 ); /* was 600 by 400 */
@ -155,7 +155,7 @@ KDatMainWindow::KDatMainWindow()
TQString about = i18n( "KDat Version %1\n\nKDat is a tar-based tape archiver.\n\nCopyright (c) 1998-2000 Sean Vyain\nCopyright (c) 2001-2002 Lawrence Widman\nkdat@cardiothink.com" ).arg( KDAT_VERSION ); TQString about = i18n( "KDat Version %1\n\nKDat is a tar-based tape archiver.\n\nCopyright (c) 1998-2000 Sean Vyain\nCopyright (c) 2001-2002 Lawrence Widman\nkdat@cardiothink.com" ).arg( KDAT_VERSION );
_menu->insertItem( i18n( "&Help" ), helpMenu( about ) ); _menu->insertItem( i18n( "&Help" ), helpMenu( about ) );
_toolbar = new KToolBar( this ); _toolbar = new TDEToolBar( this );
_toolbar->insertButton( *ImageCache::instance()->getTapeUnmounted(), 0, TQT_SIGNAL( clicked( int ) ), TQT_TQOBJECT(this), TQT_SLOT( fileMountTape() ), TRUE, i18n( "Mount/unmount tape" ) ); _toolbar->insertButton( *ImageCache::instance()->getTapeUnmounted(), 0, TQT_SIGNAL( clicked( int ) ), TQT_TQOBJECT(this), TQT_SLOT( fileMountTape() ), TRUE, i18n( "Mount/unmount tape" ) );
@ -1028,7 +1028,7 @@ void KDatMainWindow::status( const TQString & msg )
void KDatMainWindow::show() void KDatMainWindow::show()
{ {
KMainWindow::show(); TDEMainWindow::show();
hideInfo(); hideInfo();
} }

@ -27,7 +27,7 @@
class KMenuBar; class KMenuBar;
class TQSplitter; class TQSplitter;
class KStatusBar; class KStatusBar;
class KToolBar; class TDEToolBar;
class KTreeView; class KTreeView;
class KTreeViewItem; class KTreeViewItem;
@ -51,7 +51,7 @@ class TapeInfoWidget;
/** /**
* @short The KDat main window. Everything happens from here. * @short The KDat main window. Everything happens from here.
*/ */
class KDatMainWindow : public KMainWindow { class KDatMainWindow : public TDEMainWindow {
Q_OBJECT Q_OBJECT
@ -60,7 +60,7 @@ private:
KMenuBar* _menu; KMenuBar* _menu;
TQPopupMenu* _fileMenu; TQPopupMenu* _fileMenu;
TQPopupMenu* _editMenu; TQPopupMenu* _editMenu;
KToolBar* _toolbar; TDEToolBar* _toolbar;
KStatusBar* _statusBar; KStatusBar* _statusBar;
TQSplitter* _panner; TQSplitter* _panner;
KTreeView* _tree; KTreeView* _tree;

@ -122,7 +122,7 @@ Outstanding Bugs
change the names to hi22 kdat don't find them :-( In the change the names to hi22 kdat don't find them :-( In the
future there should be a set of 16x16, 22x22 and 32x32 future there should be a set of 16x16, 22x22 and 32x32
toolbar icons, the menu and toolbar can then be created toolbar icons, the menu and toolbar can then be created
with the KAction class and XMLGUI and the toolbar menu will with the TDEAction class and XMLGUI and the toolbar menu will
then have an effect :-)" then have an effect :-)"
2002-01-23 2002-01-23

@ -157,7 +157,7 @@
<property name="name"> <property name="name">
<cstring>unnamed</cstring> <cstring>unnamed</cstring>
</property> </property>
<widget class="KListBox"> <widget class="TDEListBox">
<property name="name"> <property name="name">
<cstring>klbAliases</cstring> <cstring>klbAliases</cstring>
</property> </property>

@ -38,9 +38,9 @@ KNetworkConf::KNetworkConf(TQWidget *parent, const char *name) : DCOPObject("KNe
connect(config,TQT_SIGNAL(readyLoadingNetworkInfo()),this,TQT_SLOT(enableSignals())); connect(config,TQT_SIGNAL(readyLoadingNetworkInfo()),this,TQT_SLOT(enableSignals()));
connect(config, TQT_SIGNAL(setReadOnly(bool)),this,TQT_SLOT(setReadOnlySlot(bool))); connect(config, TQT_SIGNAL(setReadOnly(bool)),this,TQT_SLOT(setReadOnlySlot(bool)));
connect(klvCardList, connect(klvCardList,
TQT_SIGNAL(contextMenu(KListView*,TQListViewItem*,const TQPoint&)), TQT_SIGNAL(contextMenu(TDEListView*,TQListViewItem*,const TQPoint&)),
this, this,
TQT_SLOT(showInterfaceContextMenuSlot(KListView*,TQListViewItem*, const TQPoint&))); TQT_SLOT(showInterfaceContextMenuSlot(TDEListView*,TQListViewItem*, const TQPoint&)));
// Register with DCOP - No longer needed as now we are a kcontrol module? // Register with DCOP - No longer needed as now we are a kcontrol module?
if ( !kapp->dcopClient()->isRegistered() ) { if ( !kapp->dcopClient()->isRegistered() ) {
@ -634,7 +634,7 @@ void KNetworkConf::saveInfoSlot(){
} }
} }
/** Creates a TQStringList with the IP addresses contained in the TQListBox of name servers. */ /** Creates a TQStringList with the IP addresses contained in the TQListBox of name servers. */
TQStringList KNetworkConf::getNamserversList(KListBox * serverList){ TQStringList KNetworkConf::getNamserversList(TDEListBox * serverList){
TQStringList list; TQStringList list;
for (unsigned i = 0; i < serverList->count(); i++) for (unsigned i = 0; i < serverList->count(); i++)
{ {
@ -642,8 +642,8 @@ TQStringList KNetworkConf::getNamserversList(KListBox * serverList){
} }
return list; return list;
} }
/** Creates a TQPtrList<KKownHostInfo> with the info contained in the KListView of name servers. */ /** Creates a TQPtrList<KKownHostInfo> with the info contained in the TDEListView of name servers. */
TQPtrList<KKnownHostInfo> KNetworkConf::getKnownHostsList(KListView * hostsList){ TQPtrList<KKnownHostInfo> KNetworkConf::getKnownHostsList(TDEListView * hostsList){
TQPtrList<KKnownHostInfo> list; TQPtrList<KKnownHostInfo> list;
TQListViewItem *it = hostsList->firstChild(); TQListViewItem *it = hostsList->firstChild();
for (int i = 0; i < hostsList->childCount(); i++) for (int i = 0; i < hostsList->childCount(); i++)
@ -860,7 +860,7 @@ void KNetworkConf::disableInterfaceSlot()
changeDeviceState(dev->getDeviceName(),DEVICE_UP); changeDeviceState(dev->getDeviceName(),DEVICE_UP);
} }
/** Adds a new host to the KListView that has the known hosts. */ /** Adds a new host to the TDEListView that has the known hosts. */
void KNetworkConf::addKnownHostSlot(){ void KNetworkConf::addKnownHostSlot(){
KAddKnownHostDlg dlg(this,0); KAddKnownHostDlg dlg(this,0);
dlg.setCaption(i18n("Add New Static Host")); dlg.setCaption(i18n("Add New Static Host"));
@ -977,9 +977,9 @@ void KNetworkConf::setReadOnlySlot(bool state)
} }
/*Shows a context menu when right-clicking in the interface list*/ /*Shows a context menu when right-clicking in the interface list*/
void KNetworkConf::showInterfaceContextMenuSlot(KListView* lv, TQListViewItem* lvi, const TQPoint& pt) void KNetworkConf::showInterfaceContextMenuSlot(TDEListView* lv, TQListViewItem* lvi, const TQPoint& pt)
{ {
KPopupMenu *context = new KPopupMenu( this ); TDEPopupMenu *context = new TDEPopupMenu( this );
TQ_CHECK_PTR( context ); TQ_CHECK_PTR( context );
context->insertItem( "&Enable Interface", this, TQT_SLOT(enableInterfaceSlot())); context->insertItem( "&Enable Interface", this, TQT_SLOT(enableInterfaceSlot()));
context->insertItem( "&Disable Interface", this, TQT_SLOT(disableInterfaceSlot())); context->insertItem( "&Disable Interface", this, TQT_SLOT(disableInterfaceSlot()));

@ -103,9 +103,9 @@ class KNetworkConf : public KNetworkConfDlg, virtual public KNetworkConfIface
KNetworkInterface * getDeviceInfo(TQString device); KNetworkInterface * getDeviceInfo(TQString device);
TQString getDeviceName(TQString ipAddr); TQString getDeviceName(TQString ipAddr);
/** Creates a TQStringList with the IP addresses contained in the TQListBox of name servers. */ /** Creates a TQStringList with the IP addresses contained in the TQListBox of name servers. */
TQStringList getNamserversList(KListBox * serverList); TQStringList getNamserversList(TDEListBox * serverList);
/** Creates a TQPtrList<KKownHostInfo> with the info contained in the KListView of name servers. */ /** Creates a TQPtrList<KKownHostInfo> with the info contained in the TDEListView of name servers. */
TQPtrList<KKnownHostInfo> getKnownHostsList(KListView * hostsList); TQPtrList<KKnownHostInfo> getKnownHostsList(TDEListView * hostsList);
TQString currentDevice; TQString currentDevice;
KRoutingInfo *routingInfo; KRoutingInfo *routingInfo;
KDNSInfo *dnsInfo; KDNSInfo *dnsInfo;
@ -176,7 +176,7 @@ class KNetworkConf : public KNetworkConfDlg, virtual public KNetworkConfIface
/** Sets the TQPushButton::autoResize() in true for all buttons. */ /** Sets the TQPushButton::autoResize() in true for all buttons. */
void makeButtonsResizeable(); void makeButtonsResizeable();
/** Adds a new host to the KListView that has the known hosts. */ /** Adds a new host to the TDEListView that has the known hosts. */
void addKnownHostSlot(); void addKnownHostSlot();
void aboutSlot(); void aboutSlot();
/** Edits the info about a known host. */ /** Edits the info about a known host. */
@ -193,7 +193,7 @@ class KNetworkConf : public KNetworkConfDlg, virtual public KNetworkConfIface
bool isDeviceActive(const TQString &device, const TQString &ifconfigOutput); bool isDeviceActive(const TQString &device, const TQString &ifconfigOutput);
/*Shows a context menu when right-clicking in the interface list*/ /*Shows a context menu when right-clicking in the interface list*/
void showInterfaceContextMenuSlot(KListView*, TQListViewItem*, const TQPoint&); void showInterfaceContextMenuSlot(TDEListView*, TQListViewItem*, const TQPoint&);
/** Enable some signals in the GUI that need to be enabled *after* the loading of the network info is done.*/ /** Enable some signals in the GUI that need to be enabled *after* the loading of the network info is done.*/
void enableSignals (); void enableSignals ();

@ -104,7 +104,7 @@
</spacer> </spacer>
</hbox> </hbox>
</widget> </widget>
<widget class="KListView"> <widget class="TDEListView">
<column> <column>
<property name="text"> <property name="text">
<string>Interface</string> <string>Interface</string>
@ -452,7 +452,7 @@
<property name="spacing"> <property name="spacing">
<number>6</number> <number>6</number>
</property> </property>
<widget class="KListBox"> <widget class="TDEListBox">
<property name="name"> <property name="name">
<cstring>klbDomainServerList</cstring> <cstring>klbDomainServerList</cstring>
</property> </property>
@ -640,7 +640,7 @@
<property name="name"> <property name="name">
<cstring>unnamed</cstring> <cstring>unnamed</cstring>
</property> </property>
<widget class="KListView"> <widget class="TDEListView">
<column> <column>
<property name="text"> <property name="text">
<string>IP Address</string> <string>IP Address</string>
@ -786,7 +786,7 @@
<property name="name"> <property name="name">
<cstring>unnamed</cstring> <cstring>unnamed</cstring>
</property> </property>
<widget class="KListView" row="0" column="0" rowspan="2" colspan="1"> <widget class="TDEListView" row="0" column="0" rowspan="2" colspan="1">
<column> <column>
<property name="text"> <property name="text">
<string>Name</string> <string>Name</string>

@ -1073,7 +1073,7 @@ TQString KNetworkConfigParser::getPlatformInfo(TQDomElement platform){
} }
/** Shows the dialog with all the supported platforms by GST. */ /** Shows the dialog with all the supported platforms by GST. */
void KNetworkConfigParser::showSupportedPlatformsDialogSlot(){ void KNetworkConfigParser::showSupportedPlatformsDialogSlot(){
KSelectDistroDlg* dialog = new KSelectDistroDlg(0, 0); TDESelectDistroDlg* dialog = new TDESelectDistroDlg(0, 0);
for ( TQStringList::Iterator it = supportedPlatformsList.begin(); it != supportedPlatformsList.end(); ++it ) for ( TQStringList::Iterator it = supportedPlatformsList.begin(); it != supportedPlatformsList.end(); ++it )
{ {

@ -1,8 +1,8 @@
<!DOCTYPE UI><UI version="3.3" stdsetdef="1"> <!DOCTYPE UI><UI version="3.3" stdsetdef="1">
<class>KSelectDistroDlg</class> <class>TDESelectDistroDlg</class>
<widget class="KDialog"> <widget class="KDialog">
<property name="name"> <property name="name">
<cstring>KSelectDistroDlg</cstring> <cstring>TDESelectDistroDlg</cstring>
</property> </property>
<property name="geometry"> <property name="geometry">
<rect> <rect>
@ -25,7 +25,7 @@
<property name="name"> <property name="name">
<cstring>unnamed</cstring> <cstring>unnamed</cstring>
</property> </property>
<widget class="KListBox" row="2" column="0" rowspan="1" colspan="4"> <widget class="TDEListBox" row="2" column="0" rowspan="1" colspan="4">
<property name="name"> <property name="name">
<cstring>klbDistroList</cstring> <cstring>klbDistroList</cstring>
</property> </property>
@ -113,19 +113,19 @@
<connection> <connection>
<sender>kpbOk</sender> <sender>kpbOk</sender>
<signal>clicked()</signal> <signal>clicked()</signal>
<receiver>KSelectDistroDlg</receiver> <receiver>TDESelectDistroDlg</receiver>
<slot>accept()</slot> <slot>accept()</slot>
</connection> </connection>
<connection> <connection>
<sender>kpbCancel</sender> <sender>kpbCancel</sender>
<signal>clicked()</signal> <signal>clicked()</signal>
<receiver>KSelectDistroDlg</receiver> <receiver>TDESelectDistroDlg</receiver>
<slot>reject()</slot> <slot>reject()</slot>
</connection> </connection>
<connection> <connection>
<sender>klbDistroList</sender> <sender>klbDistroList</sender>
<signal>doubleClicked(TQListBoxItem*)</signal> <signal>doubleClicked(TQListBoxItem*)</signal>
<receiver>KSelectDistroDlg</receiver> <receiver>TDESelectDistroDlg</receiver>
<slot>accept()</slot> <slot>accept()</slot>
</connection> </connection>
</connections> </connections>

@ -122,7 +122,7 @@ Fix dependency checking problem for uninstalling RPM packages
kpackage-1.2 kpackage-1.2
------------ ------------
Use KAccelMenu class to simplify configuring Use TDEAccelMenu class to simplify configuring
accelerators and allow accelerators to be set by typing the accelerators and allow accelerators to be set by typing the
key when the menu item is selected. The ' character is needed key when the menu item is selected. The ' character is needed
to precede the keys. (with post KDE1.1 libraries) to precede the keys. (with post KDE1.1 libraries)

@ -98,26 +98,26 @@ bool DEBAPT::isType(char *, const TQString &)
return false; return false;
} }
void DEBAPT::makeMenu(KActionCollection* act) void DEBAPT::makeMenu(TDEActionCollection* act)
{ {
updateM = new KAction( i18n("&Update"), TQString(), updateM = new TDEAction( i18n("&Update"), TQString(),
0, this, 0, this,
TQT_SLOT(updateS()), act, "debapt_update"); TQT_SLOT(updateS()), act, "debapt_update");
upgradeM = new KAction( i18n("U&pgrade"), TQString(), upgradeM = new TDEAction( i18n("U&pgrade"), TQString(),
0, this, 0, this,
TQT_SLOT(upgradeS()), act, "debapt_upgrade"); TQT_SLOT(upgradeS()), act, "debapt_upgrade");
fixupM = new KAction( i18n("&Fixup"), TQString(), fixupM = new TDEAction( i18n("&Fixup"), TQString(),
0, this, 0, this,
TQT_SLOT(fixupS()), act, "debapt_fixup"); TQT_SLOT(fixupS()), act, "debapt_fixup");
fileM = new KAction( i18n("&Apt-File Update"), TQString(), fileM = new TDEAction( i18n("&Apt-File Update"), TQString(),
0, this, 0, this,
TQT_SLOT(fileS()), act, "debapt_file"); TQT_SLOT(fileS()), act, "debapt_file");
} }
void DEBAPT::setMenu(KActionCollection*, bool enable) void DEBAPT::setMenu(TDEActionCollection*, bool enable)
{ {
updateM->setEnabled(enable); updateM->setEnabled(enable);
upgradeM->setEnabled(enable); upgradeM->setEnabled(enable);

@ -59,10 +59,10 @@ public:
void listRemotePackages(TQPtrList<packageInfo> *pki); void listRemotePackages(TQPtrList<packageInfo> *pki);
TQStringList getFileList(packageInfo *p); TQStringList getFileList(packageInfo *p);
KAction *updateM, *upgradeM, *fixupM, *fileM; TDEAction *updateM, *upgradeM, *fixupM, *fileM;
void makeMenu(KActionCollection* act); void makeMenu(TDEActionCollection* act);
void setMenu(KActionCollection* act, bool enable); void setMenu(TDEActionCollection* act, bool enable);
TQStringList readApt(); TQStringList readApt();
TQStringList readAptS(); TQStringList readAptS();

@ -70,7 +70,7 @@ FindF::FindF(TQWidget *parent)
TQLabel *valueLabel = new TQLabel(value, i18n("Find:"), frame1); TQLabel *valueLabel = new TQLabel(value, i18n("Find:"), frame1);
valueLabel->setAlignment( AlignRight ); valueLabel->setAlignment( AlignRight );
tab = new KListView(frame1, "tab"); tab = new TDEListView(frame1, "tab");
connect(tab, TQT_SIGNAL(selectionChanged ( TQListViewItem * )), connect(tab, TQT_SIGNAL(selectionChanged ( TQListViewItem * )),
this, TQT_SLOT(search( TQListViewItem * ))); this, TQT_SLOT(search( TQListViewItem * )));
tab->addColumn(i18n("Installed"),18); tab->addColumn(i18n("Installed"),18);

@ -65,7 +65,7 @@ extern Opts *opts;
////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////
KPKG::KPKG(TDEConfig *_config) KPKG::KPKG(TDEConfig *_config)
: KMainWindow(0) : TDEMainWindow(0)
{ {
kpackage = new KPACKAGE(_config, this); kpackage = new KPACKAGE(_config, this);
setCentralWidget(kpackage); setCentralWidget(kpackage);
@ -100,16 +100,16 @@ void KPKG::setupMenu()
actionCollection()); actionCollection());
recent->loadEntries( config ); recent->loadEntries( config );
pack_find = new KAction( i18n("Find &Package..."), "find", pack_find = new TDEAction( i18n("Find &Package..."), "find",
KStdAccel::shortcut(KStdAccel::Find), TQT_TQOBJECT(kpackage), TDEStdAccel::shortcut(TDEStdAccel::Find), TQT_TQOBJECT(kpackage),
TQT_SLOT(find()), actionCollection(), "pack_find"); TQT_SLOT(find()), actionCollection(), "pack_find");
pack_findf = new KAction( i18n("Find &File..."), "filefind", pack_findf = new TDEAction( i18n("Find &File..."), "filefind",
0, TQT_TQOBJECT(kpackage), 0, TQT_TQOBJECT(kpackage),
TQT_SLOT(findf()), actionCollection(), "pack_findf"); TQT_SLOT(findf()), actionCollection(), "pack_findf");
kpack_reload = new KAction( i18n("&Reload"), "reload", kpack_reload = new TDEAction( i18n("&Reload"), "reload",
KStdAccel::shortcut(KStdAccel::Reload), TQT_TQOBJECT(kpackage), TDEStdAccel::shortcut(TDEStdAccel::Reload), TQT_TQOBJECT(kpackage),
TQT_SLOT(reload()), actionCollection(), "kpack_reload"); TQT_SLOT(reload()), actionCollection(), "kpack_reload");
(void) KStdAction::quit(TQT_TQOBJECT(kpackage), TQT_SLOT(fileQuit()), (void) KStdAction::quit(TQT_TQOBJECT(kpackage), TQT_SLOT(fileQuit()),
@ -121,23 +121,23 @@ void KPKG::setupMenu()
pack_next = KStdAction::forward(TQT_TQOBJECT(kpackage->management->treeList), TQT_SLOT(next()), pack_next = KStdAction::forward(TQT_TQOBJECT(kpackage->management->treeList), TQT_SLOT(next()),
actionCollection(),"pack_next"); actionCollection(),"pack_next");
(void) (new KAction( i18n("&Expand Tree"), "ftout", (void) (new TDEAction( i18n("&Expand Tree"), "ftout",
0, TQT_TQOBJECT(kpackage), 0, TQT_TQOBJECT(kpackage),
TQT_SLOT(expandTree()), actionCollection(), "kpack_expand")); TQT_SLOT(expandTree()), actionCollection(), "kpack_expand"));
(void) (new KAction( i18n("&Collapse Tree"), "ftin", (void) (new TDEAction( i18n("&Collapse Tree"), "ftin",
0, TQT_TQOBJECT(kpackage), 0, TQT_TQOBJECT(kpackage),
TQT_SLOT(collapseTree()), actionCollection(), "kpack_collapse")); TQT_SLOT(collapseTree()), actionCollection(), "kpack_collapse"));
(void) (new KAction( i18n("Clear &Marked"), TQString(), (void) (new TDEAction( i18n("Clear &Marked"), TQString(),
0, TQT_TQOBJECT(kpackage), 0, TQT_TQOBJECT(kpackage),
TQT_SLOT(clearMarked()), actionCollection(), "kpack_clear")); TQT_SLOT(clearMarked()), actionCollection(), "kpack_clear"));
(void) (new KAction( i18n("Mark &All"), TQString(), (void) (new TDEAction( i18n("Mark &All"), TQString(),
0, TQT_TQOBJECT(kpackage), 0, TQT_TQOBJECT(kpackage),
TQT_SLOT(markAll()), actionCollection(), "kpack_markall")); TQT_SLOT(markAll()), actionCollection(), "kpack_markall"));
pack_install = new KAction( i18n("&Install"), TQString(), pack_install = new TDEAction( i18n("&Install"), TQString(),
0, TQT_TQOBJECT(kpackage->management), 0, TQT_TQOBJECT(kpackage->management),
TQT_SLOT(installSingleClicked()), actionCollection(), "install_single"); TQT_SLOT(installSingleClicked()), actionCollection(), "install_single");
@ -145,7 +145,7 @@ void KPKG::setupMenu()
kpackage->management->setInstallAction(pack_install); kpackage->management->setInstallAction(pack_install);
pack_uninstall = new KAction( i18n("&Uninstall"), TQString(), pack_uninstall = new TDEAction( i18n("&Uninstall"), TQString(),
0, TQT_TQOBJECT(kpackage->management), 0, TQT_TQOBJECT(kpackage->management),
TQT_SLOT(uninstallSingleClicked()), actionCollection(), "uninstall_single"); TQT_SLOT(uninstallSingleClicked()), actionCollection(), "uninstall_single");
@ -153,11 +153,11 @@ void KPKG::setupMenu()
kpackage->management->setUninstallAction(pack_uninstall); kpackage->management->setUninstallAction(pack_uninstall);
(void) (new KAction( i18n("&Install Marked"), TQString(), (void) (new TDEAction( i18n("&Install Marked"), TQString(),
0, TQT_TQOBJECT(kpackage->management), 0, TQT_TQOBJECT(kpackage->management),
TQT_SLOT(installMultClicked()), actionCollection(), "install_marked")); TQT_SLOT(installMultClicked()), actionCollection(), "install_marked"));
(void) (new KAction( i18n("&Uninstall Marked"), TQString(), (void) (new TDEAction( i18n("&Uninstall Marked"), TQString(),
0, TQT_TQOBJECT(kpackage->management), 0, TQT_TQOBJECT(kpackage->management),
TQT_SLOT(uninstallMultClicked()), actionCollection(), "uninstall_marked")); TQT_SLOT(uninstallMultClicked()), actionCollection(), "uninstall_marked"));
@ -170,15 +170,15 @@ void KPKG::setupMenu()
KStdAction::keyBindings( guiFactory(), TQT_SLOT(configureShortcuts()), actionCollection()); KStdAction::keyBindings( guiFactory(), TQT_SLOT(configureShortcuts()), actionCollection());
(void) (new KAction( i18n("Configure &KPackage..."), "configure", (void) (new TDEAction( i18n("Configure &KPackage..."), "configure",
0, TQT_TQOBJECT(this), 0, TQT_TQOBJECT(this),
TQT_SLOT(setOptions()), actionCollection(), "kpack_options")); TQT_SLOT(setOptions()), actionCollection(), "kpack_options"));
(void) (new KAction( i18n("Clear Package &Folder Cache"), TQString(), (void) (new TDEAction( i18n("Clear Package &Folder Cache"), TQString(),
0, TQT_TQOBJECT(this), 0, TQT_TQOBJECT(this),
TQT_SLOT(clearDCache()), actionCollection(), "clear_dcache")); TQT_SLOT(clearDCache()), actionCollection(), "clear_dcache"));
(void) (new KAction( i18n("Clear &Package Cache"), TQString(), (void) (new TDEAction( i18n("Clear &Package Cache"), TQString(),
0, TQT_TQOBJECT(this), 0, TQT_TQOBJECT(this),
TQT_SLOT(clearPCache()), actionCollection(), "clear_pcache")); TQT_SLOT(clearPCache()), actionCollection(), "clear_pcache"));

@ -50,10 +50,10 @@ class FindF;
class Options; class Options;
class pkgInterface; class pkgInterface;
class managementWidget; class managementWidget;
class KAccel; class TDEAccel;
class TQDropEevnt; class TQDropEevnt;
class KRecentFilesAction; class TDERecentFilesAction;
class KAction; class TDEAction;
class kpRun; class kpRun;
#define kpinterfaceN 7 #define kpinterfaceN 7
@ -220,7 +220,7 @@ private:
////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////
class KPKG : public KMainWindow class KPKG : public TDEMainWindow
{ {
Q_OBJECT Q_OBJECT
@ -277,14 +277,14 @@ private:
TQStrList recent_files; TQStrList recent_files;
KAction *pack_open; TDEAction *pack_open;
KAction *pack_find; TDEAction *pack_find;
KAction *pack_findf; TDEAction *pack_findf;
KAction *kpack_reload; TDEAction *kpack_reload;
KAction *pack_prev; TDEAction *pack_prev;
KAction *pack_next; TDEAction *pack_next;
KAction *pack_install; TDEAction *pack_install;
KAction *pack_uninstall; TDEAction *pack_uninstall;
int toolID, selectID; int toolID, selectID;
// refrences to toolbar and menu items // refrences to toolbar and menu items
@ -292,7 +292,7 @@ private:
bool hide_toolbar; bool hide_toolbar;
// don't display toolbar // don't display toolbar
KRecentFilesAction *recent; TDERecentFilesAction *recent;
public slots: public slots:

@ -44,7 +44,7 @@
#define MPOS 1 #define MPOS 1
KpTreeList::KpTreeList( TQWidget *parent ) : KpTreeList::KpTreeList( TQWidget *parent ) :
KListView (parent) TDEListView (parent)
{ {
markPkg = 0; markPkg = 0;
setShowSortIndicator(true); setShowSortIndicator(true);
@ -80,17 +80,17 @@ void KpTreeList::clear()
{ {
markPkg = 0; markPkg = 0;
emit cleared(); emit cleared();
KListView::clear(); TDEListView::clear();
} }
KpTreeListItem *KpTreeList::firstChild() KpTreeListItem *KpTreeList::firstChild()
{ {
return (KpTreeListItem *)KListView::firstChild(); return (KpTreeListItem *)TDEListView::firstChild();
} }
KpTreeListItem *KpTreeList::currentItem() KpTreeListItem *KpTreeList::currentItem()
{ {
return (KpTreeListItem *)KListView::currentItem(); return (KpTreeListItem *)TDEListView::currentItem();
} }
void KpTreeList::contentsMousePressEvent ( TQMouseEvent * e ) void KpTreeList::contentsMousePressEvent ( TQMouseEvent * e )
@ -136,9 +136,9 @@ void KpTreeList::contentsMousePressEvent ( TQMouseEvent * e )
} }
setCurrentItem(i); setCurrentItem(i);
} else } else
KListView::contentsMousePressEvent (e); TDEListView::contentsMousePressEvent (e);
} else } else
KListView::contentsMousePressEvent (e); TDEListView::contentsMousePressEvent (e);
} }
if (markUpdate) if (markUpdate)
@ -588,7 +588,7 @@ KpTreeListItem::KpTreeListItem( TQListViewItem *parent, packageInfo* pinfo,
setPixmap(1,info->interface->markUnInst); setPixmap(1,info->interface->markUnInst);
} }
KpTreeListItem::KpTreeListItem( KListView *parent, packageInfo* pinfo, KpTreeListItem::KpTreeListItem( TDEListView *parent, packageInfo* pinfo,
const TQPixmap& thePixmap, const TQPixmap& thePixmap,
TQString label1, TQString label2 , TQString label1, TQString label2 ,
TQString label3 , TQString label4 , TQString label3 , TQString label4 ,

@ -47,7 +47,7 @@
class packageDisplayWidget; class packageDisplayWidget;
//////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////
class KpTreeList: public KListView class KpTreeList: public TDEListView
{ {
Q_OBJECT Q_OBJECT
@ -164,7 +164,7 @@ public:
TQString label7 = 0, TQString label8 = 0); TQString label7 = 0, TQString label8 = 0);
KpTreeListItem( KListView *parent, packageInfo* pinfo, KpTreeListItem( TDEListView *parent, packageInfo* pinfo,
const TQPixmap& thePixmap, const TQPixmap& thePixmap,
TQString label1 = 0, TQString label2 = 0, TQString label1 = 0, TQString label2 = 0,
TQString label3 = 0, TQString label4 = 0, TQString label3 = 0, TQString label4 = 0,

@ -53,7 +53,7 @@
extern Opts *opts; extern Opts *opts;
KpListViewSearchLine::KpListViewSearchLine(TQWidget *parent, KpTreeList *listView) KpListViewSearchLine::KpListViewSearchLine(TQWidget *parent, KpTreeList *listView)
:KListViewSearchLine(parent, listView) :TDEListViewSearchLine(parent, listView)
{ {
list = listView; list = listView;
} }
@ -65,8 +65,8 @@ KpListViewSearchLine::~KpListViewSearchLine()
void KpListViewSearchLine::updateSearch(const TQString &s) void KpListViewSearchLine::updateSearch(const TQString &s)
{ {
list->expand(); list->expand();
KListViewSearchLine::updateSearch(s); TDEListViewSearchLine::updateSearch(s);
KListViewSearchLine::updateSearch(s); // Yes both are needed TDEListViewSearchLine::updateSearch(s); // Yes both are needed
list->sweep(false); list->sweep(false);
} }
@ -132,7 +132,7 @@ void managementWidget::setupWidgets()
ltab->addTab(t); ltab->addTab(t);
} }
// Quick Search Bar // Quick Search Bar
searchToolBar = new KToolBar( leftpanel, "search toolbar"); searchToolBar = new TDEToolBar( leftpanel, "search toolbar");
TQToolButton *clearSearch = new TQToolButton(searchToolBar); TQToolButton *clearSearch = new TQToolButton(searchToolBar);
clearSearch->setTextLabel(i18n("Clear Search"), true); clearSearch->setTextLabel(i18n("Clear Search"), true);

@ -64,11 +64,11 @@
class packageDisplayWidget; class packageDisplayWidget;
class packageInfo; class packageInfo;
class TQSplitter; class TQSplitter;
class KActionCollection; class TDEActionCollection;
class KToolBar; class TDEToolBar;
class managementWidget; class managementWidget;
class KpListViewSearchLine : public KListViewSearchLine class KpListViewSearchLine : public TDEListViewSearchLine
{ {
Q_OBJECT Q_OBJECT
@ -156,8 +156,8 @@ private:
void installMultClicked(); void installMultClicked();
// This is called when the install button has been clicked with multiple packages // This is called when the install button has been clicked with multiple packages
void setInstallAction(KAction *a) { install_action = a; } void setInstallAction(TDEAction *a) { install_action = a; }
void setUninstallAction(KAction *a) { uninstall_action = a; } void setUninstallAction(TDEAction *a) { uninstall_action = a; }
void packageHighlighted(TQListViewItem *); void packageHighlighted(TQListViewItem *);
// This is called when a package has been highlighted in the list tree // This is called when a package has been highlighted in the list tree
@ -192,7 +192,7 @@ private:
TQSplitter *vPan; TQSplitter *vPan;
// veritcal panner between panels // veritcal panner between panels
KToolBar *searchToolBar; TDEToolBar *searchToolBar;
TQPtrList<KpTreeListItem> selList; TQPtrList<KpTreeListItem> selList;
// list for selected packages // list for selected packages
@ -219,8 +219,8 @@ public:
KpListViewSearchLine *searchLine; KpListViewSearchLine *searchLine;
// Widget for search treeList // Widget for search treeList
KAction *install_action; TDEAction *install_action;
KAction *uninstall_action; TDEAction *uninstall_action;
}; };
#endif #endif

@ -181,8 +181,8 @@ void packageDisplayWidget::changePackage(packageInfo *p)
this, TQT_SLOT( openBinding(TQListViewItem *)) ); this, TQT_SLOT( openBinding(TQListViewItem *)) );
disconnect(fileList, TQT_SIGNAL(returnPressed(TQListViewItem *)), disconnect(fileList, TQT_SIGNAL(returnPressed(TQListViewItem *)),
this, TQT_SLOT( openBinding(TQListViewItem *)) ); this, TQT_SLOT( openBinding(TQListViewItem *)) );
disconnect(fileList, TQT_SIGNAL(contextMenu(KListView *, TQListViewItem *, const TQPoint &)), disconnect(fileList, TQT_SIGNAL(contextMenu(TDEListView *, TQListViewItem *, const TQPoint &)),
fileList, TQT_SLOT( openContext(KListView *, TQListViewItem *, const TQPoint &)) ); fileList, TQT_SLOT( openContext(TDEListView *, TQListViewItem *, const TQPoint &)) );
if (package && package != p) { if (package && package != p) {
@ -234,8 +234,8 @@ void packageDisplayWidget::changePackage(packageInfo *p)
this, TQT_SLOT( openBinding(TQListViewItem *)) ); this, TQT_SLOT( openBinding(TQListViewItem *)) );
connect(fileList, TQT_SIGNAL(returnPressed(TQListViewItem *)), connect(fileList, TQT_SIGNAL(returnPressed(TQListViewItem *)),
this, TQT_SLOT( openBinding(TQListViewItem *)) ); this, TQT_SLOT( openBinding(TQListViewItem *)) );
connect(fileList, TQT_SIGNAL(contextMenu(KListView *, TQListViewItem *, const TQPoint &)), connect(fileList, TQT_SIGNAL(contextMenu(TDEListView *, TQListViewItem *, const TQPoint &)),
fileList, TQT_SLOT( openContext(KListView *, TQListViewItem *, const TQPoint &)) ); fileList, TQT_SLOT( openContext(TDEListView *, TQListViewItem *, const TQPoint &)) );
} }
@ -363,15 +363,15 @@ void packageDisplayWidget::updateFileList()
kpackage->setPercent(100); kpackage->setPercent(100);
} }
kpFileList::kpFileList(TQWidget* parent, packageDisplayWidget* parent2) : KListView(parent) kpFileList::kpFileList(TQWidget* parent, packageDisplayWidget* parent2) : TDEListView(parent)
{ {
hide(); hide();
addColumn("name"); addColumn("name");
setRootIsDecorated(TRUE); setRootIsDecorated(TRUE);
connect(this, TQT_SIGNAL(contextMenu(KListView *, TQListViewItem *, const TQPoint &)), connect(this, TQT_SIGNAL(contextMenu(TDEListView *, TQListViewItem *, const TQPoint &)),
this, TQT_SLOT( openContext(KListView *, TQListViewItem *, const TQPoint &)) ); this, TQT_SLOT( openContext(TDEListView *, TQListViewItem *, const TQPoint &)) );
FileListMenu = new KPopupMenu(); FileListMenu = new TDEPopupMenu();
openwith = FileListMenu->insertItem(i18n("&Open With..."),parent2,TQT_SLOT(__openBindingWith())); openwith = FileListMenu->insertItem(i18n("&Open With..."),parent2,TQT_SLOT(__openBindingWith()));
pkDisplay = parent2; pkDisplay = parent2;
@ -394,7 +394,7 @@ void packageDisplayWidget::updateFileList()
} }
void kpFileList::openContext(KListView *, TQListViewItem *, const TQPoint &p) void kpFileList::openContext(TDEListView *, TQListViewItem *, const TQPoint &p)
{ {
FileListMenu->setItemEnabled(openwith, FileListMenu->setItemEnabled(openwith,
(selectedItem() && pkDisplay->package && pkDisplay->package->getFilename().isEmpty()) ? TRUE : FALSE); (selectedItem() && pkDisplay->package && pkDisplay->package->getFilename().isEmpty()) ? TRUE : FALSE);
@ -404,7 +404,7 @@ void packageDisplayWidget::updateFileList()
void kpFileList::clear() void kpFileList::clear()
{ {
KListView::clear(); TDEListView::clear();
} }
TQString kpFileList::item2Path(TQListViewItem *it) TQString kpFileList::item2Path(TQListViewItem *it)

@ -54,7 +54,7 @@ class packageInfo;
class TQListViewItem; class TQListViewItem;
class TQTextEdit; class TQTextEdit;
class packageDisplayWidget; class packageDisplayWidget;
class kpFileList : public KListView class kpFileList : public TDEListView
{ {
Q_OBJECT Q_OBJECT
@ -68,7 +68,7 @@ public:
public slots: public slots:
void openContext(KListView *, TQListViewItem *, const TQPoint &); void openContext(TDEListView *, TQListViewItem *, const TQPoint &);
virtual void clear(); virtual void clear();
@ -76,7 +76,7 @@ public slots:
private: private:
KPopupMenu *FileListMenu; TDEPopupMenu *FileListMenu;
packageDisplayWidget* pkDisplay; packageDisplayWidget* pkDisplay;
int openwith; int openwith;

@ -91,11 +91,11 @@ pkgInterface::~pkgInterface()
} }
////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////
void pkgInterface::makeMenu(KActionCollection *) void pkgInterface::makeMenu(TDEActionCollection *)
{ {
} }
void pkgInterface::setMenu(KActionCollection*, bool ) void pkgInterface::setMenu(TDEActionCollection*, bool )
{ {
} }

@ -44,8 +44,8 @@ class pkgOptions;
class Locations; class Locations;
class LcacheObj; class LcacheObj;
class cacheObj; class cacheObj;
class KAccel; class TDEAccel;
class KActionCollection; class TDEActionCollection;
////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////
@ -78,8 +78,8 @@ public:
virtual bool isType(char *buf, const TQString &fname) = 0; virtual bool isType(char *buf, const TQString &fname) = 0;
// looks at start of file to check that package is correct type // looks at start of file to check that package is correct type
virtual void makeMenu(KActionCollection* act); virtual void makeMenu(TDEActionCollection* act);
virtual void setMenu(KActionCollection* act, bool enable); virtual void setMenu(TDEActionCollection* act, bool enable);
bool ifExe(TQString exe); bool ifExe(TQString exe);
// Check if this executable exists // Check if this executable exists

@ -112,7 +112,7 @@ void pkgOptions::setupWidgets(TQPtrList<param> &pars)
{ {
layout = new TQBoxLayout(hlayout,TQBoxLayout::TopToBottom, spacingHint()); layout = new TQBoxLayout(hlayout,TQBoxLayout::TopToBottom, spacingHint());
packages = new KListView(this); packages = new TDEListView(this);
layout->addWidget(packages,20); layout->addWidget(packages,20);
packages->addColumn(i18n("PACKAGES"),200); packages->addColumn(i18n("PACKAGES"),200);

@ -46,7 +46,7 @@
#include "pkgInterface.h" #include "pkgInterface.h"
#include "kpTerm.h" #include "kpTerm.h"
class KListView; class TDEListView;
class KPushButton; class KPushButton;
class pkgOptions : public KDialog class pkgOptions : public KDialog
@ -70,7 +70,7 @@ public:
TQCheckBox *Keep; TQCheckBox *Keep;
// keep window // keep window
KListView *packages; TDEListView *packages;
int bnumber; int bnumber;
// number of option buttons // number of option buttons

@ -72,7 +72,7 @@
#include "ActionList.h" #include "ActionList.h"
#include "TopWidget.h" #include "TopWidget.h"
KSVContent::KSVContent (KPopupMenu* openWithMenu, KSVTopLevel* parent, const char* name) KSVContent::KSVContent (TDEPopupMenu* openWithMenu, KSVTopLevel* parent, const char* name)
: TQSplitter (Qt::Vertical, parent, name), : TQSplitter (Qt::Vertical, parent, name),
startRL (new KSVDragList*[ksv::runlevelNumber]), startRL (new KSVDragList*[ksv::runlevelNumber]),
stopRL (new KSVDragList*[ksv::runlevelNumber]), stopRL (new KSVDragList*[ksv::runlevelNumber]),
@ -85,11 +85,11 @@ KSVContent::KSVContent (KPopupMenu* openWithMenu, KSVTopLevel* parent, const cha
setOpaqueResize( TDEGlobalSettings::opaqueResize() ); setOpaqueResize( TDEGlobalSettings::opaqueResize() );
KXMLGUIFactory* factory = parent->factory(); KXMLGUIFactory* factory = parent->factory();
mItemMenu = static_cast<KPopupMenu*> (factory->container ("item_menu", parent)); mItemMenu = static_cast<TDEPopupMenu*> (factory->container ("item_menu", parent));
mItemMenu->insertTitle (i18n ("Runlevel Menu"), -1, 0); mItemMenu->insertTitle (i18n ("Runlevel Menu"), -1, 0);
mContextMenu = static_cast<KPopupMenu*> (factory->container ("list_menu", parent)); mContextMenu = static_cast<TDEPopupMenu*> (factory->container ("list_menu", parent));
mContextMenu->insertTitle (i18n ("Runlevel Menu"), -1, 0); mContextMenu->insertTitle (i18n ("Runlevel Menu"), -1, 0);
mScriptMenu = static_cast<KPopupMenu*> (factory->container ("script_menu", parent)); mScriptMenu = static_cast<TDEPopupMenu*> (factory->container ("script_menu", parent));
mScriptMenu->insertTitle (i18n ("Services Menu"), -1, 0); mScriptMenu->insertTitle (i18n ("Services Menu"), -1, 0);
mScroller = new KScroller (this); mScroller = new KScroller (this);
@ -225,8 +225,8 @@ void KSVContent::initLList()
this, TQT_SLOT (slotScriptProperties (TQListViewItem*))); this, TQT_SLOT (slotScriptProperties (TQListViewItem*)));
// context menus // context menus
connect (scripts, TQT_SIGNAL (contextMenu (KListView*, TQListViewItem*, const TQPoint&)), connect (scripts, TQT_SIGNAL (contextMenu (TDEListView*, TQListViewItem*, const TQPoint&)),
this, TQT_SLOT (popupServicesMenu (KListView*, TQListViewItem*, const TQPoint&))); this, TQT_SLOT (popupServicesMenu (TDEListView*, TQListViewItem*, const TQPoint&)));
// for cut & copy // for cut & copy
connect (scripts, TQT_SIGNAL (newOrigin ()), connect (scripts, TQT_SIGNAL (newOrigin ()),
@ -332,10 +332,10 @@ void KSVContent::initLList()
this, TQT_SLOT(slotDoubleClick(TQListViewItem*))); this, TQT_SLOT(slotDoubleClick(TQListViewItem*)));
// context menus // context menus
connect (startRL[i], TQT_SIGNAL (contextMenu (KListView*, TQListViewItem*, const TQPoint&)), connect (startRL[i], TQT_SIGNAL (contextMenu (TDEListView*, TQListViewItem*, const TQPoint&)),
this, TQT_SLOT (popupRunlevelMenu (KListView*, TQListViewItem*, const TQPoint&))); this, TQT_SLOT (popupRunlevelMenu (TDEListView*, TQListViewItem*, const TQPoint&)));
connect (stopRL[i], TQT_SIGNAL (contextMenu (KListView*, TQListViewItem*, const TQPoint&)), connect (stopRL[i], TQT_SIGNAL (contextMenu (TDEListView*, TQListViewItem*, const TQPoint&)),
this, TQT_SLOT (popupRunlevelMenu (KListView*, TQListViewItem*, const TQPoint&))); this, TQT_SLOT (popupRunlevelMenu (TDEListView*, TQListViewItem*, const TQPoint&)));
// cannot generate sorting number // cannot generate sorting number
connect (startRL[i], TQT_SIGNAL(cannotGenerateNumber()), connect (startRL[i], TQT_SIGNAL(cannotGenerateNumber()),
@ -994,7 +994,7 @@ void KSVContent::showRunlevel (int index)
calcMinSize(); calcMinSize();
} }
void KSVContent::popupRunlevelMenu (KListView* list, TQListViewItem* i, const TQPoint& p) void KSVContent::popupRunlevelMenu (TDEListView* list, TQListViewItem* i, const TQPoint& p)
{ {
if (i) if (i)
mItemMenu->exec (p, 1); mItemMenu->exec (p, 1);
@ -1005,7 +1005,7 @@ void KSVContent::popupRunlevelMenu (KListView* list, TQListViewItem* i, const TQ
} }
} }
void KSVContent::popupServicesMenu (KListView*, TQListViewItem* i, const TQPoint& p) void KSVContent::popupServicesMenu (TDEListView*, TQListViewItem* i, const TQPoint& p)
{ {
if (i) if (i)
{ {

@ -33,9 +33,9 @@ class TQLayout;
class KScroller; class KScroller;
class TDEProcess; class TDEProcess;
class KListView; class TDEListView;
class TQSplitter; class TQSplitter;
class KPopupMenu; class TDEPopupMenu;
class KSVTrash; class KSVTrash;
class KSVDragList; class KSVDragList;
class KSVConfig; class KSVConfig;
@ -50,7 +50,7 @@ class KSVContent : public TQSplitter
public: public:
KSVContent (KPopupMenu* openWithMenu, KSVTopLevel* parent = 0, const char* name = 0); KSVContent (TDEPopupMenu* openWithMenu, KSVTopLevel* parent = 0, const char* name = 0);
~KSVContent(); ~KSVContent();
KSVDragList* getOrigin(); KSVDragList* getOrigin();
@ -107,8 +107,8 @@ private slots:
void fwdUndoAction(KSVAction*); void fwdUndoAction(KSVAction*);
void updatePanningFactor(); void updatePanningFactor();
void popupRunlevelMenu (KListView*, TQListViewItem*, const TQPoint&); void popupRunlevelMenu (TDEListView*, TQListViewItem*, const TQPoint&);
void popupServicesMenu (KListView*, TQListViewItem*, const TQPoint&); void popupServicesMenu (TDEListView*, TQListViewItem*, const TQPoint&);
void updateServicesAfterChange (const TQString&); void updateServicesAfterChange (const TQString&);
void updateRunlevelsAfterChange (); void updateRunlevelsAfterChange ();
@ -154,9 +154,9 @@ private:
KSVDragList** stopRL; KSVDragList** stopRL;
KSVDragList* scripts; KSVDragList* scripts;
KPopupMenu* mItemMenu; TDEPopupMenu* mItemMenu;
KPopupMenu* mContextMenu; TDEPopupMenu* mContextMenu;
KPopupMenu* mScriptMenu; TDEPopupMenu* mScriptMenu;
KSVTrash* trash; KSVTrash* trash;
TQTextEdit* textDisplay; TQTextEdit* textDisplay;
KSVConfig* conf; KSVConfig* conf;
@ -171,7 +171,7 @@ private:
TQSize mMinSize; TQSize mMinSize;
KPopupMenu* mOpenWithMenu; TDEPopupMenu* mOpenWithMenu;
TDETrader::OfferList mOpenWithOffers; TDETrader::OfferList mOpenWithOffers;
TQCString m_buffer; TQCString m_buffer;

@ -95,7 +95,7 @@ namespace Status
} // namespace Status } // namespace Status
KSVTopLevel::KSVTopLevel() KSVTopLevel::KSVTopLevel()
: KMainWindow(0, 0L, WStyle_ContextHelp|WDestructiveClose), : TDEMainWindow(0, 0L, WStyle_ContextHelp|WDestructiveClose),
mConfig(KSVConfig::self()), mConfig(KSVConfig::self()),
mView (0L), mView (0L),
mPreferences (0L), mPreferences (0L),
@ -208,7 +208,7 @@ void KSVTopLevel::initTools()
void KSVTopLevel::initActions () void KSVTopLevel::initActions ()
{ {
KActionCollection* coll = actionCollection(); TDEActionCollection* coll = actionCollection();
// setup File menu // setup File menu
mFileRevert = KStdAction::revert (TQT_TQOBJECT(this), TQT_SLOT (slotClearChanges()), coll); mFileRevert = KStdAction::revert (TQT_TQOBJECT(this), TQT_SLOT (slotClearChanges()), coll);
@ -247,15 +247,15 @@ void KSVTopLevel::initActions ()
mPasteAppend = KStdAction::paste (TQT_TQOBJECT(this), TQT_SLOT (pasteAppend()), mPasteAppend = KStdAction::paste (TQT_TQOBJECT(this), TQT_SLOT (pasteAppend()),
coll, "ksysv_paste_append"); coll, "ksysv_paste_append");
mEditProperties = new KAction (i18n("P&roperties"), 0, mEditProperties = new TDEAction (i18n("P&roperties"), 0,
TQT_TQOBJECT(this), TQT_SLOT(properties()), TQT_TQOBJECT(this), TQT_SLOT(properties()),
coll, "ksysv_properties"); coll, "ksysv_properties");
mOpenDefault = new KAction (i18n ("&Open"), 0, mOpenDefault = new TDEAction (i18n ("&Open"), 0,
TQT_TQOBJECT(this), TQT_SLOT (editService()), TQT_TQOBJECT(this), TQT_SLOT (editService()),
coll, "ksysv_open_service"); coll, "ksysv_open_service");
mOpenWith = new KActionMenu (i18n ("Open &With"), coll, "ksysv_open_with"); mOpenWith = new TDEActionMenu (i18n ("Open &With"), coll, "ksysv_open_with");
// setup Settings menu // setup Settings menu
createStandardStatusBarAction(); createStandardStatusBarAction();
@ -264,25 +264,25 @@ void KSVTopLevel::initActions ()
KStdAction::configureToolbars (TQT_TQOBJECT(this), TQT_SLOT(configureToolbars()), coll); KStdAction::configureToolbars (TQT_TQOBJECT(this), TQT_SLOT(configureToolbars()), coll);
KStdAction::saveOptions(TQT_TQOBJECT(this), TQT_SLOT(saveOptions()), coll); KStdAction::saveOptions(TQT_TQOBJECT(this), TQT_SLOT(saveOptions()), coll);
KStdAction::preferences(TQT_TQOBJECT(this), TQT_SLOT(slotShowConfig()), coll); KStdAction::preferences(TQT_TQOBJECT(this), TQT_SLOT(slotShowConfig()), coll);
mOptionsToggleLog = new KToggleAction (i18n("Show &Log"), "toggle_log", 0, mOptionsToggleLog = new TDEToggleAction (i18n("Show &Log"), "toggle_log", 0,
TQT_TQOBJECT(this), TQT_SLOT (toggleLog()), TQT_TQOBJECT(this), TQT_SLOT (toggleLog()),
coll, "ksysv_toggle_log"); coll, "ksysv_toggle_log");
mOptionsToggleLog->setCheckedState(i18n("Hide &Log")); mOptionsToggleLog->setCheckedState(i18n("Hide &Log"));
// setup Tools menu // setup Tools menu
mToolsStartService = new KToggleAction (i18n("&Start Service..."), "ksysv_start", 0, mToolsStartService = new TDEToggleAction (i18n("&Start Service..."), "ksysv_start", 0,
TQT_TQOBJECT(mStartDlg), TQT_SLOT (toggle()), TQT_TQOBJECT(mStartDlg), TQT_SLOT (toggle()),
coll, "ksysv_start_service"); coll, "ksysv_start_service");
mToolsStopService = new KToggleAction (i18n("&Stop Service..."), "ksysv_stop", 0, mToolsStopService = new TDEToggleAction (i18n("&Stop Service..."), "ksysv_stop", 0,
TQT_TQOBJECT(mStopDlg), TQT_SLOT (toggle()), TQT_TQOBJECT(mStopDlg), TQT_SLOT (toggle()),
coll, "ksysv_stop_service"); coll, "ksysv_stop_service");
mToolsRestartService = new KToggleAction (i18n("&Restart Service..."), 0, mToolsRestartService = new TDEToggleAction (i18n("&Restart Service..."), 0,
TQT_TQOBJECT(mRestartDlg), TQT_SLOT (toggle()), TQT_TQOBJECT(mRestartDlg), TQT_SLOT (toggle()),
coll, "ksysv_restart_service"); coll, "ksysv_restart_service");
mToolsEditService = new KToggleAction (i18n("&Edit Service..."), 0, mToolsEditService = new TDEToggleAction (i18n("&Edit Service..."), 0,
TQT_TQOBJECT(mEditDlg), TQT_SLOT (toggle()), TQT_TQOBJECT(mEditDlg), TQT_SLOT (toggle()),
coll, "ksysv_edit_service"); coll, "ksysv_edit_service");
@ -851,7 +851,7 @@ void KSVTopLevel::closeEvent (TQCloseEvent* e)
return; return;
} }
KMainWindow::closeEvent (e); TDEMainWindow::closeEvent (e);
} }
void KSVTopLevel::dispatchEdit () void KSVTopLevel::dispatchEdit ()
@ -957,10 +957,10 @@ void KSVTopLevel::setCaption (bool changed)
setPlainCaption (kapp->makeStdCaption(KNetwork::KResolver::localHostName(), true, changed)); setPlainCaption (kapp->makeStdCaption(KNetwork::KResolver::localHostName(), true, changed));
} }
KActionCollection* KSVTopLevel::filteredActions () TDEActionCollection* KSVTopLevel::filteredActions ()
{ {
// remove unwanted (internal) actions // remove unwanted (internal) actions
static KActionCollection coll = *actionCollection(); static TDEActionCollection coll = *actionCollection();
static bool initialized = false; static bool initialized = false;
if (!initialized) if (!initialized)

@ -19,13 +19,13 @@
class TQCheckBox; class TQCheckBox;
class KAction; class TDEAction;
class KToggleAction; class TDEToggleAction;
class KActionMenu; class TDEActionMenu;
class KMenuBar; class KMenuBar;
class KStatusBar; class KStatusBar;
class KToolBar; class TDEToolBar;
class KActionCollection; class TDEActionCollection;
class ActionList; class ActionList;
class KSVAction; class KSVAction;
@ -36,7 +36,7 @@ class KSVContent;
class KSVPreferences; class KSVPreferences;
class RunlevelAuthIcon; class RunlevelAuthIcon;
class KSVTopLevel : public KMainWindow class KSVTopLevel : public TDEMainWindow
{ {
Q_OBJECT Q_OBJECT
@ -55,7 +55,7 @@ protected:
void initActions (); void initActions ();
void initStatusBar(); void initStatusBar();
KActionCollection* filteredActions (); TDEActionCollection* filteredActions ();
private slots: private slots:
void slotClearChanges(); void slotClearChanges();
@ -122,19 +122,19 @@ private:
KSVPreferences* mPreferences; KSVPreferences* mPreferences;
KAction *mEditUndo, *mEditRedo, *mEditCut, *mEditCopy, *mEditPaste, TDEAction *mEditUndo, *mEditRedo, *mEditCut, *mEditCopy, *mEditPaste,
*mPasteAppend, *mEditProperties; *mPasteAppend, *mEditProperties;
KAction *mFileRevert, *mFileLoad, *mFilePrint, *mFilePrintLog, TDEAction *mFileRevert, *mFileLoad, *mFilePrint, *mFilePrintLog,
*mFileSave, *mFileSaveAs, *mFileSaveLog, *mFileQuit; *mFileSave, *mFileSaveAs, *mFileSaveLog, *mFileQuit;
KToggleAction *mToolsStartService, *mToolsStopService, TDEToggleAction *mToolsStartService, *mToolsStopService,
*mToolsRestartService, *mToolsEditService; *mToolsRestartService, *mToolsEditService;
KToggleAction *mOptionsToggleLog; TDEToggleAction *mOptionsToggleLog;
KActionMenu* mOpenWith; TDEActionMenu* mOpenWith;
KAction* mOpenDefault; TDEAction* mOpenDefault;
bool mChanged; bool mChanged;

@ -101,7 +101,7 @@ void KSVConfig::writeSettings() {
mConfig->writeEntry("Number Font", mNumberFont); mConfig->writeEntry("Number Font", mNumberFont);
// save screen geometry // save screen geometry
KMainWindow* mw = static_cast<KMainWindow*>(kapp->mainWidget()); TDEMainWindow* mw = static_cast<TDEMainWindow*>(kapp->mainWidget());
if (mw) if (mw)
{ {

@ -57,7 +57,7 @@
#include "ksvdrag.h" #include "ksvdrag.h"
#include "ActionList.h" #include "ActionList.h"
KSVItem::KSVItem (KListView* view) KSVItem::KSVItem (TDEListView* view)
: TQListViewItem (view), : TQListViewItem (view),
mData (new KSVData()), mData (new KSVData()),
mConfig (KSVConfig::self()), mConfig (KSVConfig::self()),
@ -110,7 +110,7 @@ TQString KSVItem::key (int, bool) const
return mData->numberString() + mData->label(); return mData->numberString() + mData->label();
} }
KSVItem::KSVItem (KListView* view, TQString file, TQString path, TQString label, TQ_INT8 nr ) KSVItem::KSVItem (TDEListView* view, TQString file, TQString path, TQString label, TQ_INT8 nr )
: TQListViewItem (view), : TQListViewItem (view),
mData (new KSVData (file, path, label, nr)), mData (new KSVData (file, path, label, nr)),
mConfig (KSVConfig::self()), mConfig (KSVConfig::self()),
@ -310,11 +310,11 @@ void KSVItem::setOriginalRunlevel (const TQString& rl)
//----------------------- //-----------------------
KSVDragList::KSVDragList ( TQWidget* parent, const char* name ) KSVDragList::KSVDragList ( TQWidget* parent, const char* name )
: KListView (parent, name), : TDEListView (parent, name),
mItemToDrag (0L), mItemToDrag (0L),
mDragMenu (new KPopupMenu (this)), mDragMenu (new TDEPopupMenu (this)),
mDragCopyMenu (new KPopupMenu (this)), mDragCopyMenu (new TDEPopupMenu (this)),
mDragMoveMenu (new KPopupMenu (this)), mDragMoveMenu (new TDEPopupMenu (this)),
mDisplayToolTips (true), mDisplayToolTips (true),
mCommonToolTips (true) mCommonToolTips (true)
{ {
@ -400,7 +400,7 @@ void KSVDragList::setDefaultIcon (const TQPixmap& icon)
void KSVDragList::clear () void KSVDragList::clear ()
{ {
KListView::clear(); TDEListView::clear();
clearRMList(); clearRMList();
} }
@ -558,7 +558,7 @@ bool KSVDragList::acceptDrag (TQDropEvent* e) const
void KSVDragList::focusInEvent (TQFocusEvent* e) void KSVDragList::focusInEvent (TQFocusEvent* e)
{ {
KListView::focusInEvent(e); TDEListView::focusInEvent(e);
if (!currentItem()) if (!currentItem())
setCurrentItem (firstChild()); setCurrentItem (firstChild());

@ -46,7 +46,7 @@ class TQPen;
class KSVAction; class KSVAction;
class SimpleAction; class SimpleAction;
class KSVDragList; class KSVDragList;
class KPopupMenu; class TDEPopupMenu;
class KSVConfig; class KSVConfig;
class KDLToolTip; class KDLToolTip;
@ -64,10 +64,10 @@ public:
Last Last
} Columns; } Columns;
KSVItem (KListView*); KSVItem (TDEListView*);
KSVItem (const KSVItem&); KSVItem (const KSVItem&);
explicit KSVItem (KSVDragList*, const KSVData&); explicit KSVItem (KSVDragList*, const KSVData&);
KSVItem (KListView* view, TQString file, TQString path, TQString label, TQ_INT8 nr ); KSVItem (TDEListView* view, TQString file, TQString path, TQString label, TQ_INT8 nr );
virtual ~KSVItem (); virtual ~KSVItem ();
virtual TQString key (int col, bool ascending) const; virtual TQString key (int col, bool ascending) const;
@ -149,7 +149,7 @@ private:
TQColor mChangedSelectedColor; TQColor mChangedSelectedColor;
}; };
class KSVDragList : public KListView class KSVDragList : public TDEListView
{ {
Q_OBJECT Q_OBJECT
@ -175,9 +175,9 @@ public:
*/ */
inline bool isOrigin() const { return mOrigin; } inline bool isOrigin() const { return mOrigin; }
inline KSVItem* currentItem() { return static_cast<KSVItem*> (KListView::currentItem()); } inline KSVItem* currentItem() { return static_cast<KSVItem*> (TDEListView::currentItem()); }
inline KSVItem* lastItem () { return static_cast<KSVItem*> (KListView::lastItem()); } inline KSVItem* lastItem () { return static_cast<KSVItem*> (TDEListView::lastItem()); }
/** /**
* @return true if the insertion was successful. * @return true if the insertion was successful.
@ -248,9 +248,9 @@ private:
TQColor mChangedNormalColor; TQColor mChangedNormalColor;
TQColor mChangedSelectedColor; TQColor mChangedSelectedColor;
KPopupMenu* mDragMenu; TDEPopupMenu* mDragMenu;
KPopupMenu* mDragCopyMenu; TDEPopupMenu* mDragCopyMenu;
KPopupMenu* mDragMoveMenu; TDEPopupMenu* mDragMoveMenu;
KDLToolTip* toolTip; KDLToolTip* toolTip;
typedef enum { Copy, Move } DragAction; typedef enum { Copy, Move } DragAction;

@ -55,7 +55,7 @@ KSVLookAndFeel::~KSVLookAndFeel()
*/ */
void KSVLookAndFeel::chooseNumberFont() void KSVLookAndFeel::chooseNumberFont()
{ {
KFontDialog::getFont (mNumberFont, false, this); TDEFontDialog::getFont (mNumberFont, false, this);
setNumberFont (mNumberFont); setNumberFont (mNumberFont);
emit configChanged(); emit configChanged();
} }
@ -65,7 +65,7 @@ void KSVLookAndFeel::chooseNumberFont()
*/ */
void KSVLookAndFeel::chooseServiceFont() void KSVLookAndFeel::chooseServiceFont()
{ {
KFontDialog::getFont (mServiceFont, false, this); TDEFontDialog::getFont (mServiceFont, false, this);
setServiceFont (mServiceFont); setServiceFont (mServiceFont);
emit configChanged(); emit configChanged();
} }

@ -158,7 +158,7 @@ editGroup::editGroup(KU::KGroup *akg, bool samba, bool add,
if ( !mAdd ) cbsamba->setChecked( !( kg->getCaps() & KU::KGroup::Cap_Samba ) ); if ( !mAdd ) cbsamba->setChecked( !( kg->getCaps() & KU::KGroup::Cap_Samba ) );
} }
m_list_in = new KListView(page); m_list_in = new TDEListView(page);
m_list_in->setFullWidth(true); // Single column, full widget width. m_list_in->setFullWidth(true); // Single column, full widget width.
m_list_in->addColumn(i18n("Users in Group")); m_list_in->addColumn(i18n("Users in Group"));
m_list_in->setSelectionMode( TQListView::Extended ); m_list_in->setSelectionMode( TQListView::Extended );
@ -169,7 +169,7 @@ editGroup::editGroup(KU::KGroup *akg, bool samba, bool add,
TQPushButton *btdel = new TQPushButton(i18n("Remove ->"), vbox); TQPushButton *btdel = new TQPushButton(i18n("Remove ->"), vbox);
layout->addWidget( vbox, 8, 1 ); layout->addWidget( vbox, 8, 1 );
m_list_notin = new KListView(page); m_list_notin = new TDEListView(page);
m_list_notin->setFullWidth(true); // Single column, full widget width. m_list_notin->setFullWidth(true); // Single column, full widget width.
m_list_notin->addColumn(i18n("Users NOT in Group")); m_list_notin->addColumn(i18n("Users NOT in Group"));
m_list_notin->setSelectionMode(TQListView::Extended); m_list_notin->setSelectionMode(TQListView::Extended);
@ -185,10 +185,10 @@ editGroup::editGroup(KU::KGroup *akg, bool samba, bool add,
user = kug->getUsers()[i]; user = kug->getUsers()[i];
TQString userName = user->getName(); TQString userName = user->getName();
if ( kg->lookup_user(userName) || user->getGID() == kg->getGID() ) { if ( kg->lookup_user(userName) || user->getGID() == kg->getGID() ) {
KListViewItem *item = new KListViewItem(m_list_in, userName); TDEListViewItem *item = new TDEListViewItem(m_list_in, userName);
if ( user->getGID() == kg->getGID() ) item->setSelectable( false ); if ( user->getGID() == kg->getGID() ) item->setSelectable( false );
} else { } else {
new KListViewItem(m_list_notin, userName); new TDEListViewItem(m_list_notin, userName);
} }
} }
@ -224,7 +224,7 @@ void editGroup::addClicked()
if ( item->isSelected() ) { if ( item->isSelected() ) {
name = item->text( 0 ); name = item->text( 0 );
delete item; delete item;
item = new KListViewItem( m_list_in, name ); item = new TDEListViewItem( m_list_in, name );
} }
item = next; item = next;
} }
@ -241,7 +241,7 @@ void editGroup::delClicked()
if ( item->isSelected() ) { if ( item->isSelected() ) {
name = item->text( 0 ); name = item->text( 0 );
delete item; delete item;
item = new KListViewItem( m_list_notin, name ); item = new TDEListViewItem( m_list_notin, name );
} }
item = next; item = next;
} }

@ -51,7 +51,7 @@ private:
bool mSamba, mAdd; bool mSamba, mAdd;
bool ro; bool ro;
KU::KGroup *kg; KU::KGroup *kg;
KListView *m_list_in,*m_list_notin; TDEListView *m_list_in,*m_list_notin;
KLineEdit *legrpname; KLineEdit *legrpname;
KLineEdit *legid; KLineEdit *legid;
KComboBox *lerid; KComboBox *lerid;

@ -24,8 +24,8 @@
#include "kgroupvw.h" #include "kgroupvw.h"
KGroupViewItem::KGroupViewItem(KListView *parent, KU::KGroup *aku) KGroupViewItem::KGroupViewItem(TDEListView *parent, KU::KGroup *aku)
: KListViewItem(parent), mGroup(aku) : TDEListViewItem(parent), mGroup(aku)
{ {
} }
@ -83,7 +83,7 @@ TQString KGroupViewItem::text(int num) const
KGroupView::KGroupView(TQWidget *parent, const char *name) KGroupView::KGroupView(TQWidget *parent, const char *name)
: KListView( parent, name ) : TDEListView( parent, name )
{ {
setSelectionMode( TQListView::Extended ); setSelectionMode( TQListView::Extended );
} }
@ -95,7 +95,7 @@ KGroupView::~KGroupView()
void KGroupView::insertItem(KU::KGroup *aku) void KGroupView::insertItem(KU::KGroup *aku)
{ {
KGroupViewItem *groupItem = new KGroupViewItem(this, aku); KGroupViewItem *groupItem = new KGroupViewItem(this, aku);
KListView::insertItem(groupItem); TDEListView::insertItem(groupItem);
} }
void KGroupView::removeItem(KU::KGroup *aku) void KGroupView::removeItem(KU::KGroup *aku)

@ -27,10 +27,10 @@
#include "kgroup.h" #include "kgroup.h"
class KGroupViewItem : public KListViewItem class KGroupViewItem : public TDEListViewItem
{ {
public: public:
KGroupViewItem(KListView *parent, KU::KGroup *aku); KGroupViewItem(TDEListView *parent, KU::KGroup *aku);
KU::KGroup *group() { return mGroup; } KU::KGroup *group() { return mGroup; }
private: private:
virtual TQString text ( int ) const; virtual TQString text ( int ) const;
@ -39,7 +39,7 @@ private:
KU::KGroup *mGroup; KU::KGroup *mGroup;
}; };
class KGroupView : public KListView class KGroupView : public TDEListView
{ {
Q_OBJECT Q_OBJECT

@ -24,8 +24,8 @@
#include "kuservw.h" #include "kuservw.h"
KUserViewItem::KUserViewItem(KListView *parent, KU::KUser *aku) KUserViewItem::KUserViewItem(TDEListView *parent, KU::KUser *aku)
: KListViewItem(parent), mUser(aku) : TDEListViewItem(parent), mUser(aku)
{ {
} }
@ -53,7 +53,7 @@ void KUserViewItem::paintCell( TQPainter *p, const TQColorGroup &cg,
if ( mUser->getDisabled() ) if ( mUser->getDisabled() )
_cg.setColor( TQColorGroup::Text, TDEGlobalSettings::visitedLinkColor() ); _cg.setColor( TQColorGroup::Text, TDEGlobalSettings::visitedLinkColor() );
KListViewItem::paintCell( p, _cg, column, width, alignment ); TDEListViewItem::paintCell( p, _cg, column, width, alignment );
_cg.setColor( TQColorGroup::Text, c ); _cg.setColor( TQColorGroup::Text, c );
} }
@ -81,7 +81,7 @@ TQString KUserViewItem::text(int num) const
} }
KUserView::KUserView(TQWidget *parent, const char *name) KUserView::KUserView(TQWidget *parent, const char *name)
: KListView( parent, name ) : TDEListView( parent, name )
{ {
setSelectionMode( TQListView::Extended ); setSelectionMode( TQListView::Extended );
} }
@ -92,7 +92,7 @@ KUserView::~KUserView()
void KUserView::insertItem(KU::KUser *aku) { void KUserView::insertItem(KU::KUser *aku) {
KUserViewItem *userItem = new KUserViewItem(this, aku); KUserViewItem *userItem = new KUserViewItem(this, aku);
KListView::insertItem(userItem); TDEListView::insertItem(userItem);
} }
void KUserView::removeItem(KU::KUser *aku) { void KUserView::removeItem(KU::KUser *aku) {

@ -27,10 +27,10 @@
#include "kuser.h" #include "kuser.h"
class KUserViewItem : public KListViewItem class KUserViewItem : public TDEListViewItem
{ {
public: public:
KUserViewItem(KListView *parent, KU::KUser *aku); KUserViewItem(TDEListView *parent, KU::KUser *aku);
KU::KUser *user() { return mUser; } KU::KUser *user() { return mUser; }
private: private:
virtual TQString text ( int ) const; virtual TQString text ( int ) const;
@ -40,7 +40,7 @@ private:
KU::KUser *mUser; KU::KUser *mUser;
}; };
class KUserView : public KListView class KUserView : public TDEListView
{ {
Q_OBJECT Q_OBJECT

@ -38,7 +38,7 @@
#include "selectconn.h" #include "selectconn.h"
#include "mainView.h" #include "mainView.h"
mainWidget::mainWidget(const char *name) : KMainWindow(0,name) mainWidget::mainWidget(const char *name) : TDEMainWindow(0,name)
{ {
md = new mainView(this); md = new mainView(this);
@ -75,37 +75,37 @@ void mainWidget::setupActions()
#define BarIconC(x) BarIcon(TQString::fromLatin1(x)) #define BarIconC(x) BarIcon(TQString::fromLatin1(x))
(void) new KAction(i18n("&Add..."), TQIconSet(BarIconC("add_user")), 0, TQT_TQOBJECT(md), (void) new TDEAction(i18n("&Add..."), TQIconSet(BarIconC("add_user")), 0, TQT_TQOBJECT(md),
TQT_SLOT(useradd()), actionCollection(), "add_user"); TQT_SLOT(useradd()), actionCollection(), "add_user");
(void) new KAction(i18n("&Edit..."), TQIconSet(BarIconC("edit_user")), 0, TQT_TQOBJECT(md), (void) new TDEAction(i18n("&Edit..."), TQIconSet(BarIconC("edit_user")), 0, TQT_TQOBJECT(md),
TQT_SLOT(useredit()), actionCollection(), "edit_user"); TQT_SLOT(useredit()), actionCollection(), "edit_user");
(void) new KAction(i18n("&Delete..."), TQIconSet(BarIconC("delete_user")), 0, TQT_TQOBJECT(md), (void) new TDEAction(i18n("&Delete..."), TQIconSet(BarIconC("delete_user")), 0, TQT_TQOBJECT(md),
TQT_SLOT(userdel()), actionCollection(), "delete_user"); TQT_SLOT(userdel()), actionCollection(), "delete_user");
(void) new KAction(i18n("&Set Password..."), (void) new TDEAction(i18n("&Set Password..."),
0, TQT_TQOBJECT(md), TQT_SLOT(setpwd()), actionCollection(), "set_password_user"); 0, TQT_TQOBJECT(md), TQT_SLOT(setpwd()), actionCollection(), "set_password_user");
(void) new KAction(i18n("&Add..."), TQIconSet(BarIconC("add_group")), 0, TQT_TQOBJECT(md), (void) new TDEAction(i18n("&Add..."), TQIconSet(BarIconC("add_group")), 0, TQT_TQOBJECT(md),
TQT_SLOT(grpadd()), actionCollection(), "add_group"); TQT_SLOT(grpadd()), actionCollection(), "add_group");
(void) new KAction(i18n("&Edit..."), TQIconSet(BarIconC("edit_group")), 0, TQT_TQOBJECT(md), (void) new TDEAction(i18n("&Edit..."), TQIconSet(BarIconC("edit_group")), 0, TQT_TQOBJECT(md),
TQT_SLOT(grpedit()), actionCollection(), "edit_group"); TQT_SLOT(grpedit()), actionCollection(), "edit_group");
(void) new KAction(i18n("&Delete"), TQIconSet(BarIconC("delete_group")), 0, TQT_TQOBJECT(md), (void) new TDEAction(i18n("&Delete"), TQIconSet(BarIconC("delete_group")), 0, TQT_TQOBJECT(md),
TQT_SLOT(grpdel()), actionCollection(), "delete_group"); TQT_SLOT(grpdel()), actionCollection(), "delete_group");
(void) new KAction(i18n("&Reload"), TQIconSet(BarIconC("reload")), 0, TQT_TQOBJECT(this), (void) new TDEAction(i18n("&Reload"), TQIconSet(BarIconC("reload")), 0, TQT_TQOBJECT(this),
TQT_SLOT(reload()), actionCollection(), "reload"); TQT_SLOT(reload()), actionCollection(), "reload");
#undef BarIconC #undef BarIconC
(void) new KAction(i18n("&Select Connection..."), (void) new TDEAction(i18n("&Select Connection..."),
0, TQT_TQOBJECT(this), 0, TQT_TQOBJECT(this),
TQT_SLOT(selectconn()), actionCollection(), "select_conn"); TQT_SLOT(selectconn()), actionCollection(), "select_conn");
mShowSys = new KToggleAction(i18n("Show System Users/Groups"), mShowSys = new TDEToggleAction(i18n("Show System Users/Groups"),
0, 0, TQT_TQOBJECT(this), 0, 0, TQT_TQOBJECT(this),
TQT_SLOT(showSys()), actionCollection(), "show_sys"); TQT_SLOT(showSys()), actionCollection(), "show_sys");
mShowSys->setCheckedState(i18n("Hide System Users/Groups")); mShowSys->setCheckedState(i18n("Hide System Users/Groups"));

@ -25,9 +25,9 @@
class SelectConn; class SelectConn;
class mainView; class mainView;
class KToggleAction; class TDEToggleAction;
class mainWidget : public KMainWindow { class mainWidget : public TDEMainWindow {
Q_OBJECT Q_OBJECT
public: public:
@ -48,7 +48,7 @@ protected slots:
void reload(); void reload();
private: private:
KToggleAction *mShowSys; TDEToggleAction *mShowSys;
mainView *md; mainView *md;
SelectConn *sc; SelectConn *sc;

@ -320,7 +320,7 @@ void propdlg::initDlg()
TQFrame *frame = addPage(i18n("Groups")); TQFrame *frame = addPage(i18n("Groups"));
TQGridLayout *layout = new TQGridLayout(frame, 2, 2, marginHint(), spacingHint()); TQGridLayout *layout = new TQGridLayout(frame, 2, 2, marginHint(), spacingHint());
lstgrp = new KListView(frame); lstgrp = new TDEListView(frame);
lstgrp->setFullWidth(true); // Single column, full widget width. lstgrp->setFullWidth(true); // Single column, full widget width.
lstgrp->addColumn( i18n("Groups") ); lstgrp->addColumn( i18n("Groups") );
if ( ro ) lstgrp->setSelectionMode( TQListView::NoSelection ); if ( ro ) lstgrp->setSelectionMode( TQListView::NoSelection );

@ -101,7 +101,7 @@ protected:
TQString newpass; TQString newpass;
time_t lstchg; time_t lstchg;
KListView *lstgrp; TDEListView *lstgrp;
TQPushButton *pbsetpwd; TQPushButton *pbsetpwd;

@ -35,14 +35,14 @@
#include "secpolicywin.h" #include "secpolicywin.h"
SecPolicyWin::SecPolicyWin(const char *name) SecPolicyWin::SecPolicyWin(const char *name)
: KMainWindow(0,name) : TDEMainWindow(0,name)
{ {
view = new PamView(this); view = new PamView(this);
setCentralWidget(view); setCentralWidget(view);
KMenuBar *mBar = menuBar(); KMenuBar *mBar = menuBar();
TQPopupMenu *fileMenu = new TQPopupMenu(this); TQPopupMenu *fileMenu = new TQPopupMenu(this);
fileMenu->insertItem(i18n("&Quit"), kapp, TQT_SLOT(closeAllWindows()), KStdAccel::shortcut(KStdAccel::Quit)); fileMenu->insertItem(i18n("&Quit"), kapp, TQT_SLOT(closeAllWindows()), TDEStdAccel::shortcut(TDEStdAccel::Quit));
mBar->insertItem(i18n("&File"), fileMenu); mBar->insertItem(i18n("&File"), fileMenu);
connect(kapp, TQT_SIGNAL(lastWindowClosed()), kapp, TQT_SLOT(quit())); connect(kapp, TQT_SIGNAL(lastWindowClosed()), kapp, TQT_SLOT(quit()));

@ -29,7 +29,7 @@
class PamView; class PamView;
class SecPolicyWin : public KMainWindow class SecPolicyWin : public TDEMainWindow
{ {
public: public:
SecPolicyWin(const char *name = 0); SecPolicyWin(const char *name = 0);

Loading…
Cancel
Save