Rename KIcon to enhance compatibility with KDE4

pull/1/head
Timothy Pearson 12 years ago
parent 0889370e30
commit b1c5bea50a

@ -252,7 +252,7 @@ void FileSelectDlg::setupSinglefileTorrent()
single_root->setText(0,tc->getStats().torrent_name); single_root->setText(0,tc->getStats().torrent_name);
single_root->setText(1,BytesToString(tc->getStats().total_bytes)); single_root->setText(1,BytesToString(tc->getStats().total_bytes));
single_root->setText(2,i18n("Yes")); single_root->setText(2,i18n("Yes"));
single_root->setPixmap(0,KMimeType::findByPath(tc->getStats().torrent_name)->pixmap(KIcon::Small)); single_root->setPixmap(0,KMimeType::findByPath(tc->getStats().torrent_name)->pixmap(TDEIcon::Small));
root = 0; root = 0;
updateSizeLabels(); updateSizeLabels();
m_select_all->setEnabled(false); m_select_all->setEnabled(false);

@ -42,7 +42,7 @@ namespace kt
void Group::setIconByName(const TQString & in) void Group::setIconByName(const TQString & in)
{ {
icon_name = in; icon_name = in;
icon = TDEGlobal::iconLoader()->loadIcon(in,KIcon::Small); icon = TDEGlobal::iconLoader()->loadIcon(in,TDEIcon::Small);
} }
void Group::rename(const TQString & nn) void Group::rename(const TQString & nn)

@ -105,7 +105,7 @@ namespace kt
addGroup(gman->activeUploadsGroup(), active); addGroup(gman->activeUploadsGroup(), active);
custom_root = new TDEListViewItem(all,i18n("Custom Groups")); custom_root = new TDEListViewItem(all,i18n("Custom Groups"));
custom_root->setPixmap(0,TDEGlobal::iconLoader()->loadIcon("folder",KIcon::Small)); custom_root->setPixmap(0,TDEGlobal::iconLoader()->loadIcon("folder",TDEIcon::Small));
setOpen(custom_root,true); setOpen(custom_root,true);
} }

@ -26,7 +26,7 @@ namespace kt
TorrentDrag::TorrentDrag(TQWidget* src, const char *name) : TQStoredDrag("application/x-ktorrent-drag-object",src, name) TorrentDrag::TorrentDrag(TQWidget* src, const char *name) : TQStoredDrag("application/x-ktorrent-drag-object",src, name)
{ {
setPixmap(TDEGlobal::iconLoader()->loadIcon("player_playlist",KIcon::Small)); setPixmap(TDEGlobal::iconLoader()->loadIcon("player_playlist",TDEIcon::Small));
} }

@ -859,7 +859,7 @@ void KTorrent::addToolWidget(TQWidget* w,const TQString & icon,const TQString &
if (!icon.isNull()) if (!icon.isNull())
w->setIcon(TDEGlobal::iconLoader()->loadIcon(icon,KIcon::Small)); w->setIcon(TDEGlobal::iconLoader()->loadIcon(icon,TDEIcon::Small));
switch (dock) switch (dock)
{ {

@ -31,32 +31,32 @@ using namespace kt;
KTorrentViewMenu::KTorrentViewMenu (KTorrentView *parent, const char *name ) KTorrentViewMenu::KTorrentViewMenu (KTorrentView *parent, const char *name )
: TDEPopupMenu ( parent, name ),view(parent) : TDEPopupMenu ( parent, name ),view(parent)
{ {
KIconLoader* iload = TDEGlobal::iconLoader(); TDEIconLoader* iload = TDEGlobal::iconLoader();
stop_id = insertItem( stop_id = insertItem(
iload->loadIconSet("ktstop",KIcon::Small),i18n("to stop", "Stop"), iload->loadIconSet("ktstop",TDEIcon::Small),i18n("to stop", "Stop"),
parent,TQT_SLOT(stopDownloads())); parent,TQT_SLOT(stopDownloads()));
start_id = insertItem( start_id = insertItem(
iload->loadIconSet("ktstart",KIcon::Small),i18n("to start", "Start"), iload->loadIconSet("ktstart",TDEIcon::Small),i18n("to start", "Start"),
parent,TQT_SLOT(startDownloads())); parent,TQT_SLOT(startDownloads()));
remove_id = insertItem( remove_id = insertItem(
iload->loadIconSet("ktremove",KIcon::Small),i18n("Remove Torrent"), iload->loadIconSet("ktremove",TDEIcon::Small),i18n("Remove Torrent"),
parent,TQT_SLOT(removeDownloads())); parent,TQT_SLOT(removeDownloads()));
remove_all_id = insertItem( remove_all_id = insertItem(
iload->loadIconSet("ktremove",KIcon::Small),i18n("Remove Torrent and Data"), iload->loadIconSet("ktremove",TDEIcon::Small),i18n("Remove Torrent and Data"),
parent,TQT_SLOT(removeDownloadsAndData())); parent,TQT_SLOT(removeDownloadsAndData()));
queue_id = insertItem( queue_id = insertItem(
iload->loadIconSet("player_playlist",KIcon::Small),i18n("Enqueue/Dequeue"), iload->loadIconSet("player_playlist",TDEIcon::Small),i18n("Enqueue/Dequeue"),
parent,TQT_SLOT(queueSlot())); parent,TQT_SLOT(queueSlot()));
insertSeparator(); insertSeparator();
add_peer_id = insertItem( add_peer_id = insertItem(
iload->loadIconSet("add", KIcon::Small), i18n("Add Peers"), iload->loadIconSet("add", TDEIcon::Small), i18n("Add Peers"),
parent, TQT_SLOT(showAddPeersWidget())); parent, TQT_SLOT(showAddPeersWidget()));
peer_sources_menu = new TDEPopupMenu(this); peer_sources_menu = new TDEPopupMenu(this);
@ -69,19 +69,19 @@ KTorrentViewMenu::KTorrentViewMenu (KTorrentView *parent, const char *name )
insertSeparator(); insertSeparator();
announce_id = insertItem( announce_id = insertItem(
iload->loadIconSet("apply",KIcon::Small),i18n("Manual Announce"), iload->loadIconSet("apply",TDEIcon::Small),i18n("Manual Announce"),
parent,TQT_SLOT(manualAnnounce())); parent,TQT_SLOT(manualAnnounce()));
preview_id = insertItem( preview_id = insertItem(
iload->loadIconSet("frame_image",KIcon::Small),i18n("Preview"), iload->loadIconSet("frame_image",TDEIcon::Small),i18n("Preview"),
parent, TQT_SLOT(previewFiles())); parent, TQT_SLOT(previewFiles()));
insertSeparator(); insertSeparator();
dirs_sub_menu = new TDEPopupMenu(this); dirs_sub_menu = new TDEPopupMenu(this);
dirs_id = insertItem(i18n("Open Directory"), dirs_sub_menu); dirs_id = insertItem(i18n("Open Directory"), dirs_sub_menu);
outputdir_id = dirs_sub_menu->insertItem(iload->loadIconSet("folder",KIcon::Small), i18n("Data Directory"), outputdir_id = dirs_sub_menu->insertItem(iload->loadIconSet("folder",TDEIcon::Small), i18n("Data Directory"),
parent, TQT_SLOT(openOutputDirectory())); parent, TQT_SLOT(openOutputDirectory()));
torxdir_id = dirs_sub_menu->insertItem(iload->loadIconSet("folder",KIcon::Small), i18n("Temporary Directory"), torxdir_id = dirs_sub_menu->insertItem(iload->loadIconSet("folder",TDEIcon::Small), i18n("Temporary Directory"),
parent, TQT_SLOT(openTorXDirectory())); parent, TQT_SLOT(openTorXDirectory()));
downloaddir_id = insertItem(i18n("Set Download Location"), parent, TQT_SLOT(setDownloadLocationSlot())); downloaddir_id = insertItem(i18n("Set Download Location"), parent, TQT_SLOT(setDownloadLocationSlot()));

@ -144,7 +144,7 @@ void KTorrentPreferences::removePrefPage(kt::PrefPageInterface* pp)
/////////////////////////////////////////////////////// ///////////////////////////////////////////////////////
DownloadPrefPage::DownloadPrefPage() : kt::PrefPageInterface(i18n("Downloads"), i18n("Download Options"), TDEGlobal::iconLoader()->loadIcon("down", KIcon::NoGroup)), dp(0) DownloadPrefPage::DownloadPrefPage() : kt::PrefPageInterface(i18n("Downloads"), i18n("Download Options"), TDEGlobal::iconLoader()->loadIcon("down", TDEIcon::NoGroup)), dp(0)
{} {}
DownloadPrefPage::~ DownloadPrefPage() DownloadPrefPage::~ DownloadPrefPage()
@ -214,7 +214,7 @@ void DownloadPrefPage::deleteWidget()
////////////////////////////////////// //////////////////////////////////////
GeneralPrefPage::GeneralPrefPage() : GeneralPrefPage::GeneralPrefPage() :
kt::PrefPageInterface(i18n("General"), i18n("General Options"), kt::PrefPageInterface(i18n("General"), i18n("General Options"),
TDEGlobal::iconLoader()->loadIcon("package_settings", KIcon::NoGroup)), gp(0) TDEGlobal::iconLoader()->loadIcon("package_settings", TDEIcon::NoGroup)), gp(0)
{} {}
GeneralPrefPage::~GeneralPrefPage() GeneralPrefPage::~GeneralPrefPage()
@ -409,7 +409,7 @@ void GeneralPrefPage::deleteWidget()
AdvancedPrefPage::AdvancedPrefPage() : AdvancedPrefPage::AdvancedPrefPage() :
kt::PrefPageInterface(i18n("Advanced"), i18n("Advanced Options"), kt::PrefPageInterface(i18n("Advanced"), i18n("Advanced Options"),
TDEGlobal::iconLoader()->loadIcon("package_settings", KIcon::NoGroup)), ap(0) TDEGlobal::iconLoader()->loadIcon("package_settings", TDEIcon::NoGroup)), ap(0)
{} {}
AdvancedPrefPage::~AdvancedPrefPage() AdvancedPrefPage::~AdvancedPrefPage()

@ -98,12 +98,12 @@ void QueueItem::paintCell(TQPainter* p,const TQColorGroup & cg,int column,int wi
QueueDialog::QueueDialog(bt::QueueManager* qm, TQWidget *parent, const char *name) QueueDialog::QueueDialog(bt::QueueManager* qm, TQWidget *parent, const char *name)
:QueueDlg(parent, name) :QueueDlg(parent, name)
{ {
KIconLoader* iload = TDEGlobal::iconLoader(); TDEIconLoader* iload = TDEGlobal::iconLoader();
m_tabs->setTabIconSet(m_tabs->page(0), iload->loadIconSet("down", KIcon::Small)); m_tabs->setTabIconSet(m_tabs->page(0), iload->loadIconSet("down", TDEIcon::Small));
m_tabs->setTabIconSet(m_tabs->page(1), iload->loadIconSet("up", KIcon::Small)); m_tabs->setTabIconSet(m_tabs->page(1), iload->loadIconSet("up", TDEIcon::Small));
logo->setPixmap(iload->loadIcon("ktqueuemanager", KIcon::Desktop)); logo->setPixmap(iload->loadIcon("ktqueuemanager", TDEIcon::Desktop));
connect(downloadList, TQT_SIGNAL(selectionChanged(TQListViewItem*)), this, TQT_SLOT(downloadList_currentChanged( TQListViewItem* ))); connect(downloadList, TQT_SIGNAL(selectionChanged(TQListViewItem*)), this, TQT_SLOT(downloadList_currentChanged( TQListViewItem* )));
connect(seedList, TQT_SIGNAL(selectionChanged(TQListViewItem*)), this, TQT_SLOT(seedList_currentChanged( TQListViewItem* ))); connect(seedList, TQT_SIGNAL(selectionChanged(TQListViewItem*)), this, TQT_SLOT(seedList_currentChanged( TQListViewItem* )));
@ -114,8 +114,8 @@ QueueDialog::QueueDialog(bt::QueueManager* qm, TQWidget *parent, const char *nam
if(seedList->firstChild()) if(seedList->firstChild())
seedList->setCurrentItem(seedList->firstChild()); seedList->setCurrentItem(seedList->firstChild());
btnMoveUp->setPixmap(iload->loadIcon("up", KIcon::Small)); btnMoveUp->setPixmap(iload->loadIcon("up", TDEIcon::Small));
btnMoveDown->setPixmap(iload->loadIcon("down", KIcon::Small)); btnMoveDown->setPixmap(iload->loadIcon("down", TDEIcon::Small));
this->qman = qm; this->qman = qm;

@ -39,7 +39,7 @@ namespace kt
{ {
parent = 0; parent = 0;
size = 0; size = 0;
setPixmap(0,TDEGlobal::iconLoader()->loadIcon("folder",KIcon::Small)); setPixmap(0,TDEGlobal::iconLoader()->loadIcon("folder",TDEIcon::Small));
setText(0,name); setText(0,name);
setText(1,BytesToString(size)); setText(1,BytesToString(size));
setText(2,i18n("Yes")); setText(2,i18n("Yes"));
@ -53,7 +53,7 @@ namespace kt
name(name),parent(parent) name(name),parent(parent)
{ {
size = 0; size = 0;
setPixmap(0,TDEGlobal::iconLoader()->loadIcon("folder",KIcon::Small)); setPixmap(0,TDEGlobal::iconLoader()->loadIcon("folder",TDEIcon::Small));
setText(0,name); setText(0,name);
setText(1,BytesToString(size)); setText(1,BytesToString(size));
setText(2,i18n("Yes")); setText(2,i18n("Yes"));

@ -102,7 +102,7 @@ namespace kt
setText(0,name); setText(0,name);
setText(1,BytesToString(file.getSize())); setText(1,BytesToString(file.getSize()));
updatePriorityText(); updatePriorityText();
setPixmap(0,KMimeType::findByPath(name)->pixmap(KIcon::Small)); setPixmap(0,KMimeType::findByPath(name)->pixmap(TDEIcon::Small));
} }
void FileTreeItem::stateChange(bool on) void FileTreeItem::stateChange(bool on)

@ -60,7 +60,7 @@ namespace kt
}; };
PluginManagerPrefPage::PluginManagerPrefPage(PluginManager* pman) PluginManagerPrefPage::PluginManagerPrefPage(PluginManager* pman)
: PrefPageInterface(i18n("Plugins"), i18n("Plugin Options"),TDEGlobal::iconLoader()->loadIcon("ktplugins",KIcon::NoGroup)),pman(pman) : PrefPageInterface(i18n("Plugins"), i18n("Plugin Options"),TDEGlobal::iconLoader()->loadIcon("ktplugins",TDEIcon::NoGroup)),pman(pman)
{ {
pmw = 0; pmw = 0;
} }

@ -139,7 +139,7 @@ namespace kt
s.torrent_name, s.torrent_name,
BytesToString(s.total_bytes)); BytesToString(s.total_bytes));
item->setPixmap(0,KMimeType::findByPath(s.torrent_name)->pixmap(KIcon::Small)); item->setPixmap(0,KMimeType::findByPath(s.torrent_name)->pixmap(TDEIcon::Small));
setEnabled(true); setEnabled(true);
connect(curr_tc,TQT_SIGNAL(missingFilesMarkedDND( kt::TorrentInterface* )), connect(curr_tc,TQT_SIGNAL(missingFilesMarkedDND( kt::TorrentInterface* )),
this,TQT_SLOT(refreshFileTree( kt::TorrentInterface* ))); this,TQT_SLOT(refreshFileTree( kt::TorrentInterface* )));

@ -31,7 +31,7 @@ namespace kt
{ {
InfoWidgetPrefPage::InfoWidgetPrefPage(InfoWidgetPlugin* iw) InfoWidgetPrefPage::InfoWidgetPrefPage(InfoWidgetPlugin* iw)
: PrefPageInterface(i18n("Info Widget"),i18n("Information Widget Options"),TDEGlobal::iconLoader()->loadIcon("ktinfowidget",KIcon::NoGroup)),iw(iw) : PrefPageInterface(i18n("Info Widget"),i18n("Information Widget Options"),TDEGlobal::iconLoader()->loadIcon("ktinfowidget",TDEIcon::NoGroup)),iw(iw)
{ {
pref = 0; pref = 0;
} }

@ -65,13 +65,13 @@ namespace kt
{ {
if (!yes_no_pix_loaded) if (!yes_no_pix_loaded)
{ {
KIconLoader* iload = TDEGlobal::iconLoader(); TDEIconLoader* iload = TDEGlobal::iconLoader();
/* Prefer builtin flag images to the ones provided by KDE */ /* Prefer builtin flag images to the ones provided by KDE */
flagDB.addFlagSource("data", TQString("ktorrent/geoip/%1.png")); flagDB.addFlagSource("data", TQString("ktorrent/geoip/%1.png"));
flagDB.addFlagSource("locale", TQString("l10n/%1/flag.png")); flagDB.addFlagSource("locale", TQString("l10n/%1/flag.png"));
yes_pix = iload->loadIcon("button_ok",KIcon::Small); yes_pix = iload->loadIcon("button_ok",TDEIcon::Small);
no_pix = iload->loadIcon("button_cancel",KIcon::Small); no_pix = iload->loadIcon("button_cancel",TDEIcon::Small);
lock_pix = iload->loadIcon("ktencrypted",KIcon::Small); lock_pix = iload->loadIcon("ktencrypted",TDEIcon::Small);
#ifdef USE_SYSTEM_GEOIP #ifdef USE_SYSTEM_GEOIP
geo_ip = GeoIP_open_type(GEOIP_COUNTRY_EDITION, GEOIP_STANDARD); geo_ip = GeoIP_open_type(GEOIP_COUNTRY_EDITION, GEOIP_STANDARD);
geoip_db_exists = (geo_ip != NULL); geoip_db_exists = (geo_ip != NULL);
@ -246,8 +246,8 @@ namespace kt
setShowSortIndicator(true); setShowSortIndicator(true);
menu = new TDEPopupMenu(this); menu = new TDEPopupMenu(this);
kick_id = menu->insertItem(TDEGlobal::iconLoader()->loadIcon("delete_user", KIcon::NoGroup), i18n("to kick", "Kick peer")); kick_id = menu->insertItem(TDEGlobal::iconLoader()->loadIcon("delete_user", TDEIcon::NoGroup), i18n("to kick", "Kick peer"));
ban_id = menu->insertItem(TDEGlobal::iconLoader()->loadIcon("filter",KIcon::NoGroup), i18n("to ban", "Ban peer")); ban_id = menu->insertItem(TDEGlobal::iconLoader()->loadIcon("filter",TDEIcon::NoGroup), i18n("to ban", "Ban peer"));
connect(this,TQT_SIGNAL(contextMenu(TDEListView*, TQListViewItem*, const TQPoint& )), connect(this,TQT_SIGNAL(contextMenu(TDEListView*, TQListViewItem*, const TQPoint& )),
this,TQT_SLOT(showContextMenu(TDEListView*, TQListViewItem*, const TQPoint& ))); this,TQT_SLOT(showContextMenu(TDEListView*, TQListViewItem*, const TQPoint& )));

@ -46,11 +46,11 @@ namespace kt
TrackerView::TrackerView(TQWidget *parent, const char *name) TrackerView::TrackerView(TQWidget *parent, const char *name)
:TrackerViewBase(parent, name), tc(0) :TrackerViewBase(parent, name), tc(0)
{ {
KIconLoader* iload = TDEGlobal::iconLoader(); TDEIconLoader* iload = TDEGlobal::iconLoader();
btnUpdate->setIconSet(iload->loadIconSet("apply", KIcon::Small)); btnUpdate->setIconSet(iload->loadIconSet("apply", TDEIcon::Small));
btnAdd->setIconSet(iload->loadIconSet("add", KIcon::Small)); btnAdd->setIconSet(iload->loadIconSet("add", TDEIcon::Small));
btnRemove->setIconSet(iload->loadIconSet("remove", KIcon::Small)); btnRemove->setIconSet(iload->loadIconSet("remove", TDEIcon::Small));
btnRestore->setIconSet(iload->loadIconSet("undo", KIcon::Small)); btnRestore->setIconSet(iload->loadIconSet("undo", TDEIcon::Small));
TQPalette p = lblCurrent->palette(); TQPalette p = lblCurrent->palette();
p.setColor(TQPalette::Active,TQColorGroup::Base,p.color(TQPalette::Active,TQColorGroup::Background)); p.setColor(TQPalette::Active,TQColorGroup::Base,p.color(TQPalette::Active,TQColorGroup::Background));

@ -220,7 +220,7 @@ namespace kt
//////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////
IPBlockingPrefPage::IPBlockingPrefPage(CoreInterface* core, IPFilterPlugin* p) IPBlockingPrefPage::IPBlockingPrefPage(CoreInterface* core, IPFilterPlugin* p)
: PrefPageInterface(i18n("IPBlocking Filter"), i18n("IPBlocking Filter Options"), TDEGlobal::iconLoader()->loadIcon("filter",KIcon::NoGroup)), m_core(core), m_plugin(p) : PrefPageInterface(i18n("IPBlocking Filter"), i18n("IPBlocking Filter Options"), TDEGlobal::iconLoader()->loadIcon("filter",TDEIcon::NoGroup)), m_core(core), m_plugin(p)
{ {
widget = 0; widget = 0;
} }

@ -29,7 +29,7 @@ namespace kt
LogPrefPage::LogPrefPage() LogPrefPage::LogPrefPage()
: PrefPageInterface(i18n("LogViewer"), i18n("LogViewer Options"), : PrefPageInterface(i18n("LogViewer"), i18n("LogViewer Options"),
TDEGlobal::iconLoader()->loadIcon("toggle_log",KIcon::NoGroup)) TDEGlobal::iconLoader()->loadIcon("toggle_log",TDEIcon::NoGroup))
{ {
m_widget = 0; m_widget = 0;
} }

@ -61,10 +61,10 @@ namespace kt
void RssFeedPlugin::load() void RssFeedPlugin::load()
{ {
//add the new tab to the gui //add the new tab to the gui
KIconLoader* iload = TDEGlobal::iconLoader(); TDEIconLoader* iload = TDEGlobal::iconLoader();
m_rssFeedManager = new RssFeedManager(getCore()); m_rssFeedManager = new RssFeedManager(getCore());
getGUI()->addTabPage( getGUI()->addTabPage(
m_rssFeedManager,iload->loadIconSet("player_playlist", KIcon::Small), m_rssFeedManager,iload->loadIconSet("player_playlist", TDEIcon::Small),
i18n("RSS Feeds")); i18n("RSS Feeds"));
} }

@ -32,7 +32,7 @@ namespace kt
ScanFolderPrefPage::ScanFolderPrefPage(ScanFolderPlugin* plugin) ScanFolderPrefPage::ScanFolderPrefPage(ScanFolderPlugin* plugin)
: PrefPageInterface(i18n("ScanFolder"), i18n("ScanFolder Options"), : PrefPageInterface(i18n("ScanFolder"), i18n("ScanFolder Options"),
TDEGlobal::iconLoader()->loadIcon("view_sidetree",KIcon::NoGroup)), m_plugin(plugin) TDEGlobal::iconLoader()->loadIcon("view_sidetree",TDEIcon::NoGroup)), m_plugin(plugin)
{} {}

@ -53,7 +53,7 @@ namespace kt
lblStatus->clear(); lblStatus->clear();
pix_icon->setPixmap(TDEGlobal::iconLoader()->loadIcon("clock",KIcon::NoGroup)); pix_icon->setPixmap(TDEGlobal::iconLoader()->loadIcon("clock",TDEIcon::NoGroup));
btnOk->setGuiItem(KStdGuiItem::ok()); btnOk->setGuiItem(KStdGuiItem::ok());
btnCancel->setGuiItem(KStdGuiItem::cancel()); btnCancel->setGuiItem(KStdGuiItem::cancel());

@ -32,7 +32,7 @@ namespace kt
{ {
SchedulerPrefPage::SchedulerPrefPage(SchedulerPlugin* plugin) SchedulerPrefPage::SchedulerPrefPage(SchedulerPlugin* plugin)
: PrefPageInterface(i18n("Scheduler"), i18n("Scheduler plugin options"), TDEGlobal::iconLoader()->loadIcon("clock",KIcon::NoGroup)), m_plugin(plugin) : PrefPageInterface(i18n("Scheduler"), i18n("Scheduler plugin options"), TDEGlobal::iconLoader()->loadIcon("clock",TDEIcon::NoGroup)), m_plugin(plugin)
{ {
widget = 0; widget = 0;
} }

@ -113,10 +113,10 @@ namespace kt
return; return;
} }
KIconLoader* iload = TDEGlobal::iconLoader(); TDEIconLoader* iload = TDEGlobal::iconLoader();
SearchWidget* search = new SearchWidget(this); SearchWidget* search = new SearchWidget(this);
getGUI()->addTabPage(search,iload->loadIconSet("viewmag", KIcon::Small),text,this); getGUI()->addTabPage(search,iload->loadIconSet("viewmag", TDEIcon::Small),text,this);
TDEAction* copy_act = KStdAction::copy(TQT_TQOBJECT(search),TQT_SLOT(copy()),actionCollection()); TDEAction* copy_act = KStdAction::copy(TQT_TQOBJECT(search),TQT_SLOT(copy()),actionCollection());
copy_act->plug(search->rightClickMenu(),0); copy_act->plug(search->rightClickMenu(),0);

@ -245,7 +245,7 @@ namespace kt
SearchPrefPage::SearchPrefPage(SearchPlugin* plugin) SearchPrefPage::SearchPrefPage(SearchPlugin* plugin)
: PrefPageInterface(i18n("a noun", "Search"), i18n("Search Engine Options"), : PrefPageInterface(i18n("a noun", "Search"), i18n("Search Engine Options"),
TDEGlobal::iconLoader()->loadIcon("viewmag",KIcon::NoGroup)), m_plugin(plugin) TDEGlobal::iconLoader()->loadIcon("viewmag",TDEIcon::NoGroup)), m_plugin(plugin)
{ {
widget = 0; widget = 0;
} }

@ -68,10 +68,10 @@ namespace kt
right_click_menu->insertSeparator(); right_click_menu->insertSeparator();
back_id = right_click_menu->insertItem( back_id = right_click_menu->insertItem(
TDEGlobal::iconLoader()->loadIconSet(TQApplication::reverseLayout() TDEGlobal::iconLoader()->loadIconSet(TQApplication::reverseLayout()
? "forward" : "back",KIcon::Small), ? "forward" : "back",TDEIcon::Small),
i18n("Back"),html_part,TQT_SLOT(back())); i18n("Back"),html_part,TQT_SLOT(back()));
right_click_menu->insertItem( right_click_menu->insertItem(
TDEGlobal::iconLoader()->loadIconSet("reload",KIcon::Small), TDEGlobal::iconLoader()->loadIconSet("reload",TDEIcon::Small),
i18n("Reload"),html_part,TQT_SLOT(reload())); i18n("Reload"),html_part,TQT_SLOT(reload()));
right_click_menu->setItemEnabled(back_id,false); right_click_menu->setItemEnabled(back_id,false);
@ -84,12 +84,12 @@ namespace kt
sbar->m_clear_button->setIconSet( sbar->m_clear_button->setIconSet(
TDEGlobal::iconLoader()->loadIconSet(TQApplication::reverseLayout() TDEGlobal::iconLoader()->loadIconSet(TQApplication::reverseLayout()
? "clear_left" : "locationbar_erase",KIcon::Small)); ? "clear_left" : "locationbar_erase",TDEIcon::Small));
sbar->m_back->setIconSet( sbar->m_back->setIconSet(
TDEGlobal::iconLoader()->loadIconSet(TQApplication::reverseLayout() TDEGlobal::iconLoader()->loadIconSet(TQApplication::reverseLayout()
? "forward" : "back", KIcon::Small)); ? "forward" : "back", TDEIcon::Small));
sbar->m_reload->setIconSet( sbar->m_reload->setIconSet(
TDEGlobal::iconLoader()->loadIconSet("reload",KIcon::Small)); TDEGlobal::iconLoader()->loadIconSet("reload",TDEIcon::Small));
connect(html_part,TQT_SIGNAL(backAvailable(bool )), connect(html_part,TQT_SIGNAL(backAvailable(bool )),

@ -22,7 +22,7 @@
namespace kt { namespace kt {
StatsPluginPrefs::StatsPluginPrefs() : PrefPageInterface(i18n("Statistics"), i18n("Statistics options"), TDEGlobal::iconLoader()->loadIcon("ktimemon",KIcon::NoGroup)), pmUi(0) StatsPluginPrefs::StatsPluginPrefs() : PrefPageInterface(i18n("Statistics"), i18n("Statistics options"), TDEGlobal::iconLoader()->loadIcon("ktimemon",TDEIcon::NoGroup)), pmUi(0)
{ {
} }

@ -59,7 +59,7 @@ namespace kt
void UPnPPlugin::load() void UPnPPlugin::load()
{ {
//KIconLoader* iload = TDEGlobal::iconLoader(); //TDEIconLoader* iload = TDEGlobal::iconLoader();
sock = new UPnPMCastSocket(); sock = new UPnPMCastSocket();
pref = new UPnPPrefPage(sock); pref = new UPnPPrefPage(sock);
this->getGUI()->addPrefPage(pref); this->getGUI()->addPrefPage(pref);

@ -28,7 +28,7 @@
namespace kt namespace kt
{ {
UPnPPrefPage::UPnPPrefPage(UPnPMCastSocket* sock): PrefPageInterface(i18n("UPnP"), i18n("UPnP Devices"),TDEGlobal::iconLoader()->loadIcon("ktupnp",KIcon::NoGroup)),sock(sock) UPnPPrefPage::UPnPPrefPage(UPnPMCastSocket* sock): PrefPageInterface(i18n("UPnP"), i18n("UPnP Devices"),TDEGlobal::iconLoader()->loadIcon("ktupnp",TDEIcon::NoGroup)),sock(sock)
{ {
widget = 0; widget = 0;
} }

@ -25,7 +25,7 @@ namespace kt
WebInterfacePrefPage::WebInterfacePrefPage(WebInterfacePlugin* plugin) WebInterfacePrefPage::WebInterfacePrefPage(WebInterfacePlugin* plugin)
: PrefPageInterface(i18n("WebInterface"), i18n("WebInterface Options"), : PrefPageInterface(i18n("WebInterface"), i18n("WebInterface Options"),
TDEGlobal::iconLoader()->loadIcon("toggle_log",KIcon::NoGroup)) TDEGlobal::iconLoader()->loadIcon("toggle_log",TDEIcon::NoGroup))
{ {
m_widget = 0; m_widget = 0;
w_plugin=plugin; w_plugin=plugin;

Loading…
Cancel
Save