Rename a number of classes to enhance compatibility with KDE4

pull/1/head
Timothy Pearson 11 years ago
parent 088cc453ec
commit ee52bb567f

@ -234,7 +234,7 @@ void blinken::keyPressEvent(TQKeyEvent *e)
} }
else else
{ {
KShortcut ks(e -> key()); TDEShortcut ks(e -> key());
if (!ks.toString().isEmpty()) if (!ks.toString().isEmpty())
{ {
bool different = true; bool different = true;

@ -16,7 +16,7 @@
class TQTimer; class TQTimer;
class KAction; class TDEAction;
class KHelpMenu; class KHelpMenu;
class button; class button;

@ -66,7 +66,7 @@ void button::setShortcut(int key)
TQString button::shortcut() const TQString button::shortcut() const
{ {
return KShortcut(m_key).toString(); return TDEShortcut(m_key).toString();
} }
int button::key() const int button::key() const

@ -14,9 +14,9 @@
#include "blinkengame.h" #include "blinkengame.h"
class KAction; class TDEAction;
class KActionCollection; class TDEActionCollection;
class KShortcut; class TDEShortcut;
class button class button
{ {

@ -65,7 +65,7 @@ DetailedInfoDlg::DetailedInfoDlg( Element *el , TQWidget *parent, const char *na
// setting the element // setting the element
createContent(); createContent();
m_actionCollection = new KActionCollection(this); m_actionCollection = new TDEActionCollection(this);
KStdAction::quit(TQT_TQOBJECT(this), TQT_SLOT(slotClose()), m_actionCollection); KStdAction::quit(TQT_TQOBJECT(this), TQT_SLOT(slotClose()), m_actionCollection);
setButtonTip( User2, i18n( "Goes to the previous element" ) ); setButtonTip( User2, i18n( "Goes to the previous element" ) );

@ -29,7 +29,7 @@ class TQMouseEvent;
class TQFrame; class TQFrame;
class TQLabel; class TQLabel;
class TQVBoxLayout; class TQVBoxLayout;
class KActionCollection; class TDEActionCollection;
class TDEHTMLPart; class TDEHTMLPart;
/** /**
@ -57,7 +57,7 @@ class DetailedInfoDlg : public KDialogBase
Element *m_element; Element *m_element;
int m_elementNumber; int m_elementNumber;
KActionCollection* m_actionCollection; TDEActionCollection* m_actionCollection;
SpectrumViewImpl *m_spectrumview; SpectrumViewImpl *m_spectrumview;

@ -68,7 +68,7 @@ ElementDataViewer::ElementDataViewer( TQWidget *parent, const char* name )
setButtonText( User1, i18n("&Plot") ); setButtonText( User1, i18n("&Plot") );
m_actionCollection = new KActionCollection(this); m_actionCollection = new TDEActionCollection(this);
KStdAction::quit(TQT_TQOBJECT(this), TQT_SLOT(slotClose()), m_actionCollection); KStdAction::quit(TQT_TQOBJECT(this), TQT_SLOT(slotClose()), m_actionCollection);
connect ( m_pPlotSetupWidget->KCB_y, TQT_SIGNAL( activated(int) ), connect ( m_pPlotSetupWidget->KCB_y, TQT_SIGNAL( activated(int) ),

@ -22,7 +22,7 @@ class Element;
class KalziumDataObject; class KalziumDataObject;
class PlotSetupWidget; class PlotSetupWidget;
class PlotWidget; class PlotWidget;
class KActionCollection; class TDEActionCollection;
/** /**
* @short the values of the y-Axis * @short the values of the y-Axis
@ -135,7 +135,7 @@ class ElementDataViewer : public KDialogBase
TQStringList names; TQStringList names;
KActionCollection* m_actionCollection; TDEActionCollection* m_actionCollection;
void initData(); void initData();
void setupAxisData(); void setupAxisData();

@ -56,7 +56,7 @@
#define IDS_ELEMENTINFO 7 #define IDS_ELEMENTINFO 7
Kalzium::Kalzium() Kalzium::Kalzium()
: KMainWindow( 0, "Kalzium" ) : TDEMainWindow( 0, "Kalzium" )
{ {
// reading the elements from file // reading the elements from file
KalziumDataObject::instance(); KalziumDataObject::instance();
@ -107,14 +107,14 @@ Kalzium::Kalzium()
void Kalzium::setupActions() void Kalzium::setupActions()
{ {
m_actionNoScheme = new KToggleAction(i18n("&No Color Scheme"), 0, TQT_TQOBJECT(this), TQT_SLOT(slotNoLook()), actionCollection(), "view_look_noscheme"); m_actionNoScheme = new TDEToggleAction(i18n("&No Color Scheme"), 0, TQT_TQOBJECT(this), TQT_SLOT(slotNoLook()), actionCollection(), "view_look_noscheme");
// the actions for the color schemes // the actions for the color schemes
m_actionGroups = new KToggleAction(i18n("Show &Groups"), 0, TQT_TQOBJECT(this), TQT_SLOT(slotLookGroups()), actionCollection(), "view_look_groups"); m_actionGroups = new TDEToggleAction(i18n("Show &Groups"), 0, TQT_TQOBJECT(this), TQT_SLOT(slotLookGroups()), actionCollection(), "view_look_groups");
m_actionBlocks = new KToggleAction(i18n("Show &Blocks"), 0, TQT_TQOBJECT(this), TQT_SLOT(slotLookBlocks()), actionCollection(), "view_look_blocks"); m_actionBlocks = new TDEToggleAction(i18n("Show &Blocks"), 0, TQT_TQOBJECT(this), TQT_SLOT(slotLookBlocks()), actionCollection(), "view_look_blocks");
m_actionAcid = new KToggleAction(i18n("Show &Acid Behavior"), 0, TQT_TQOBJECT(this), TQT_SLOT(slotLookAcidBehavior()), actionCollection(), "view_look_acid"); m_actionAcid = new TDEToggleAction(i18n("Show &Acid Behavior"), 0, TQT_TQOBJECT(this), TQT_SLOT(slotLookAcidBehavior()), actionCollection(), "view_look_acid");
m_actionFamily = new KToggleAction(i18n("Show &Family"), 0, TQT_TQOBJECT(this), TQT_SLOT(slotLookFamily()), actionCollection(), "view_look_family"); m_actionFamily = new TDEToggleAction(i18n("Show &Family"), 0, TQT_TQOBJECT(this), TQT_SLOT(slotLookFamily()), actionCollection(), "view_look_family");
m_actionCrystal = new KToggleAction(i18n("Show &Crystal Structures"), 0, TQT_TQOBJECT(this), TQT_SLOT(slotLookCrystal()), actionCollection(), "view_look_crystal"); m_actionCrystal = new TDEToggleAction(i18n("Show &Crystal Structures"), 0, TQT_TQOBJECT(this), TQT_SLOT(slotLookCrystal()), actionCollection(), "view_look_crystal");
//the actions for switching PerodicTableView //the actions for switching PerodicTableView
TQStringList gradientlist; TQStringList gradientlist;
@ -127,7 +127,7 @@ void Kalzium::setupActions()
gradientlist.append(i18n("Melting Point")); gradientlist.append(i18n("Melting Point"));
gradientlist.append(i18n("Electronegativity")); gradientlist.append(i18n("Electronegativity"));
gradientlist.append(i18n("Electron Affinity")); gradientlist.append(i18n("Electron Affinity"));
gradient_action = new KSelectAction(i18n("&Gradient"), 0, TQT_TQOBJECT(this), 0, actionCollection(), "view_look_gradmenu"); gradient_action = new TDESelectAction(i18n("&Gradient"), 0, TQT_TQOBJECT(this), 0, actionCollection(), "view_look_gradmenu");
gradient_action->setItems(gradientlist); gradient_action->setItems(gradientlist);
connect (gradient_action, TQT_SIGNAL(activated(int)), TQT_TQOBJECT(this), TQT_SLOT(slotSwitchtoGradient(int))); connect (gradient_action, TQT_SIGNAL(activated(int)), TQT_TQOBJECT(this), TQT_SLOT(slotSwitchtoGradient(int)));
@ -137,24 +137,24 @@ void Kalzium::setupActions()
numlist.append(i18n("Show &IUPAC")); numlist.append(i18n("Show &IUPAC"));
numlist.append(i18n("Show &CAS")); numlist.append(i18n("Show &CAS"));
numlist.append(i18n("Show &Old IUPAC")); numlist.append(i18n("Show &Old IUPAC"));
numeration_action = new KSelectAction (i18n("&Numeration"), 0, TQT_TQOBJECT(this), 0, actionCollection(), "view_numerationtype"); numeration_action = new TDESelectAction (i18n("&Numeration"), 0, TQT_TQOBJECT(this), 0, actionCollection(), "view_numerationtype");
numeration_action->setItems(numlist); numeration_action->setItems(numlist);
numeration_action->setCurrentItem(Prefs::numeration()); numeration_action->setCurrentItem(Prefs::numeration());
connect (numeration_action, TQT_SIGNAL(activated(int)), TQT_TQOBJECT(this), TQT_SLOT(slotSwitchtoNumeration(int))); connect (numeration_action, TQT_SIGNAL(activated(int)), TQT_TQOBJECT(this), TQT_SLOT(slotSwitchtoNumeration(int)));
m_SidebarAction = new KAction(i18n("Show &Sidebar"), "sidebar", 0, TQT_TQOBJECT(this), TQT_SLOT(slotShowHideSidebar()), actionCollection(), "view_sidebar"); m_SidebarAction = new TDEAction(i18n("Show &Sidebar"), "sidebar", 0, TQT_TQOBJECT(this), TQT_SLOT(slotShowHideSidebar()), actionCollection(), "view_sidebar");
#ifdef HAVE_FACILE #ifdef HAVE_FACILE
m_EQSolverAction = new KAction(i18n("&Equation Solver..."), "eqchem", 0, TQT_TQOBJECT(this), TQT_SLOT(slotShowEQSolver()), actionCollection(), "tools_eqsolver"); m_EQSolverAction = new TDEAction(i18n("&Equation Solver..."), "eqchem", 0, TQT_TQOBJECT(this), TQT_SLOT(slotShowEQSolver()), actionCollection(), "tools_eqsolver");
#endif #endif
// tools actions // tools actions
m_pPlotAction = new KAction(i18n("&Plot Data..."), "plot", 0, TQT_TQOBJECT(this), TQT_SLOT(slotPlotData()), actionCollection(), "tools_plotdata"); m_pPlotAction = new TDEAction(i18n("&Plot Data..."), "plot", 0, TQT_TQOBJECT(this), TQT_SLOT(slotPlotData()), actionCollection(), "tools_plotdata");
m_pGlossaryAction = new KAction(i18n("&Glossary..."), "glossary", 0, TQT_TQOBJECT(this), TQT_SLOT(slotGlossary()), actionCollection(), "tools_glossary"); m_pGlossaryAction = new TDEAction(i18n("&Glossary..."), "glossary", 0, TQT_TQOBJECT(this), TQT_SLOT(slotGlossary()), actionCollection(), "tools_glossary");
// other period view options // other period view options
m_pLegendAction = new KAction(i18n("Show &Legend"), "legend", 0, TQT_TQOBJECT(this), TQT_SLOT(slotShowLegend()), actionCollection(), "view_legend"); m_pLegendAction = new TDEAction(i18n("Show &Legend"), "legend", 0, TQT_TQOBJECT(this), TQT_SLOT(slotShowLegend()), actionCollection(), "view_legend");
m_pTooltipAction = new KAction(i18n("Show &Tooltip"), "tooltip", 0, TQT_TQOBJECT(this), TQT_SLOT(slotEnableTooltips()), actionCollection(), "view_tooltip"); m_pTooltipAction = new TDEAction(i18n("Show &Tooltip"), "tooltip", 0, TQT_TQOBJECT(this), TQT_SLOT(slotEnableTooltips()), actionCollection(), "view_tooltip");
// the standard actions // the standard actions
KStdAction::preferences(TQT_TQOBJECT(this), TQT_SLOT(showSettingsDialog()), actionCollection()); KStdAction::preferences(TQT_TQOBJECT(this), TQT_SLOT(showSettingsDialog()), actionCollection());

@ -19,8 +19,8 @@
#include <kmainwindow.h> #include <kmainwindow.h>
class KSelectAction; class TDESelectAction;
class KToggleAction; class TDEToggleAction;
class QuizsettingsDlg; class QuizsettingsDlg;
class SliderWidget; class SliderWidget;
class TQToolBox; class TQToolBox;
@ -43,7 +43,7 @@ class GlossaryDialog;
* This class connects the parts of kalzium. All actions will * This class connects the parts of kalzium. All actions will
* be set, the menu generated and so on. * be set, the menu generated and so on.
*/ */
class Kalzium : public KMainWindow class Kalzium : public TDEMainWindow
{ {
Q_OBJECT Q_OBJECT
@ -86,24 +86,24 @@ class Kalzium : public KMainWindow
void setFullDraw(); void setFullDraw();
/** /**
* all KActions Kalzium uses * all TDEActions Kalzium uses
*/ */
KSelectAction *gradient_action; TDESelectAction *gradient_action;
KSelectAction *numeration_action; TDESelectAction *numeration_action;
KAction *m_pPlotAction, TDEAction *m_pPlotAction,
*m_pGlossaryAction; *m_pGlossaryAction;
KAction *m_pTooltipAction; TDEAction *m_pTooltipAction;
KAction *m_pLegendAction; TDEAction *m_pLegendAction;
KAction *m_SidebarAction; TDEAction *m_SidebarAction;
KAction *m_EQSolverAction; TDEAction *m_EQSolverAction;
KToggleAction *m_actionNoScheme; TDEToggleAction *m_actionNoScheme;
KToggleAction *m_actionGroups; TDEToggleAction *m_actionGroups;
KToggleAction *m_actionBlocks; TDEToggleAction *m_actionBlocks;
KToggleAction *m_actionAcid; TDEToggleAction *m_actionAcid;
KToggleAction *m_actionFamily; TDEToggleAction *m_actionFamily;
KToggleAction *m_actionCrystal; TDEToggleAction *m_actionCrystal;
/** /**
* the layout of the central Widget ( CentralWidget ) * the layout of the central Widget ( CentralWidget )

@ -24,7 +24,7 @@
#include "moleculeparser.h" #include "moleculeparser.h"
class KToggleAction; class TDEToggleAction;
class KLineEdit; class KLineEdit;
class Element; class Element;

@ -36,7 +36,7 @@
* added program icon * added program icon
* added KHelpMenu as KPopupMenu to the help button in the main window * added KHelpMenu as TDEPopupMenu to the help button in the main window
* added section main window to the handbook * added section main window to the handbook

@ -55,7 +55,7 @@ MainQtWidget::MainQtWidget()
// get the settings // get the settings
readOptions(); readOptions();
// creating KActions, used by the kbruchui.rc file // creating TDEActions, used by the kbruchui.rc file
setupActions(); setupActions();
createGUI(0L); createGUI(0L);
@ -154,7 +154,7 @@ void MainQtWidget::writeOptions()
void MainQtWidget::setupActions() void MainQtWidget::setupActions()
{ {
// new task action // new task action
m_NewTaskAction = new KAction(i18n("&New"), "filenew", KStdAccel::shortcut(KStdAccel::New), m_NewTaskAction = new TDEAction(i18n("&New"), "filenew", TDEStdAccel::shortcut(TDEStdAccel::New),
TQT_TQOBJECT(this), TQT_SLOT(NewTask()), TQT_TQOBJECT(this), TQT_SLOT(NewTask()),
actionCollection(), "NewTask"); actionCollection(), "NewTask");

@ -37,7 +37,7 @@ class TaskView;
* \author Sebastian Stein * \author Sebastian Stein
* \author Eva Brucherseifer * \author Eva Brucherseifer
**/ **/
class MainQtWidget : public KMainWindow class MainQtWidget : public TDEMainWindow
{ {
Q_OBJECT Q_OBJECT
@ -100,7 +100,7 @@ class MainQtWidget : public KMainWindow
KWidgetAction * m_OperationBoxAction; KWidgetAction * m_OperationBoxAction;
KWidgetAction * m_OperationLabelAction; KWidgetAction * m_OperationLabelAction;
KAction * m_NewTaskAction; TDEAction * m_NewTaskAction;
private slots: private slots:
/** /**

@ -24,7 +24,7 @@
<property name="name"> <property name="name">
<cstring>unnamed</cstring> <cstring>unnamed</cstring>
</property> </property>
<widget class="KFontChooser"> <widget class="TDEFontChooser">
<property name="name"> <property name="name">
<cstring>kcfg_taskFont</cstring> <cstring>kcfg_taskFont</cstring>
</property> </property>

@ -24,7 +24,7 @@
KCheckEduca::KCheckEduca(TQWidget *parent, const char *name ) : TQCheckBox(parent,name) KCheckEduca::KCheckEduca(TQWidget *parent, const char *name ) : TQCheckBox(parent,name)
{ {
_doc = 0; _doc = 0;
KAcceleratorManager::setNoAccel( this ); TDEAcceleratorManager::setNoAccel( this );
} }
KCheckEduca::~KCheckEduca() KCheckEduca::~KCheckEduca()

@ -64,7 +64,7 @@ Keduca::~Keduca()
void Keduca::setupActions() void Keduca::setupActions()
{ {
KStdAction::open( TQT_TQOBJECT(this), TQT_SLOT( slotFileOpen() ), actionCollection() ); KStdAction::open( TQT_TQOBJECT(this), TQT_SLOT( slotFileOpen() ), actionCollection() );
(void)new KAction( i18n( "Open &Gallery..." ), 0, 0, TQT_TQOBJECT(this), TQT_SLOT( slotGallery() ), (void)new TDEAction( i18n( "Open &Gallery..." ), 0, 0, TQT_TQOBJECT(this), TQT_SLOT( slotGallery() ),
actionCollection(), "open_gallery" ); actionCollection(), "open_gallery" );
_recentFiles = KStdAction::openRecent(TQT_TQOBJECT(this), TQT_SLOT ( slotFileOpenURL(const KURL &) ), _recentFiles = KStdAction::openRecent(TQT_TQOBJECT(this), TQT_SLOT ( slotFileOpenURL(const KURL &) ),
actionCollection()); actionCollection());

@ -57,7 +57,7 @@ private:
// Private attributes // Private attributes
/** Recent files */ /** Recent files */
KRecentFilesAction *_recentFiles; TDERecentFilesAction *_recentFiles;
/** A KEDUCA file main view */ /** A KEDUCA file main view */
KParts::ReadOnlyPart *_part; KParts::ReadOnlyPart *_part;

@ -75,7 +75,7 @@ class KEducaPart : public KParts::ReadOnlyPart
private: private:
/* /*
* Sets the KActions for this part. * Sets the TDEActions for this part.
*/ */
void setupActions(); void setupActions();

@ -48,7 +48,7 @@ void KGroupEduca::insertAnswer( const TQString& text)
switch( _typeMode ) switch( _typeMode )
{ {
case Radio: case Radio:
answer = new KRadioEduca( _vbox2 ); answer = new TDERadioEduca( _vbox2 );
break; break;
case Check: case Check:
answer = new KCheckEduca( _vbox2 ); answer = new KCheckEduca( _vbox2 );
@ -87,7 +87,7 @@ bool KGroupEduca::isChecked(int id)
{ {
case Radio: case Radio:
{ {
KRadioEduca *tmpRadioButton = (KRadioEduca*) find(id); TDERadioEduca *tmpRadioButton = (TDERadioEduca*) find(id);
if(tmpRadioButton != 0) return tmpRadioButton->isChecked(); if(tmpRadioButton != 0) return tmpRadioButton->isChecked();
} }
break; break;

@ -20,19 +20,19 @@
#include <tqstyle.h> #include <tqstyle.h>
#include <kaccelmanager.h> #include <kaccelmanager.h>
KRadioEduca::KRadioEduca(TQWidget *parent, const char *name) : TQRadioButton(parent,name) TDERadioEduca::TDERadioEduca(TQWidget *parent, const char *name) : TQRadioButton(parent,name)
{ {
_doc=0; _doc=0;
KAcceleratorManager::setNoAccel(this); TDEAcceleratorManager::setNoAccel(this);
} }
KRadioEduca::~KRadioEduca() TDERadioEduca::~TDERadioEduca()
{ {
delete _doc; delete _doc;
} }
/** reimpl */ /** reimpl */
void KRadioEduca::drawButtonLabel( TQPainter *p) void TDERadioEduca::drawButtonLabel( TQPainter *p)
{ {
int x, y, w, h; int x, y, w, h;
int extra_width, indicator_width; int extra_width, indicator_width;

@ -25,13 +25,13 @@
/**TQRadioButton with wordwrap and richtext features /**TQRadioButton with wordwrap and richtext features
*@author Javier Campos Morales *@author Javier Campos Morales
*/ */
class KRadioEduca : public TQRadioButton { class TDERadioEduca : public TQRadioButton {
Q_OBJECT Q_OBJECT
public: public:
KRadioEduca(TQWidget *parent=0, const char *name=0); TDERadioEduca(TQWidget *parent=0, const char *name=0);
~KRadioEduca(); ~TDERadioEduca();
protected: protected:

@ -636,7 +636,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>Answer</string> <string>Answer</string>

@ -61,7 +61,7 @@ static const char* const keducabuilder_data[] = {
"..............."}; "..............."};
KEducaBuilder::KEducaBuilder(TQWidget* parent, const char *name, WFlags f ) KEducaBuilder::KEducaBuilder(TQWidget* parent, const char *name, WFlags f )
: KMainWindow(parent,name,f), : TDEMainWindow(parent,name,f),
_nativeFormat("application/x-edu") _nativeFormat("application/x-edu")
{ {
_keducaFile = new FileRead(); _keducaFile = new FileRead();
@ -90,7 +90,7 @@ void KEducaBuilder::init()
_split = new TQSplitter( mainView ); _split = new TQSplitter( mainView );
_split->setOrientation( Qt::Vertical ); _split->setOrientation( Qt::Vertical );
_listAnswer = new KListBox( _split, "_listAnswer" ); _listAnswer = new TDEListBox( _split, "_listAnswer" );
_listAnswer->setSizePolicy( TQSizePolicy( (TQSizePolicy::SizeType)7, (TQSizePolicy::SizeType)7, _listAnswer->sizePolicy().hasHeightForWidth() ) ); _listAnswer->setSizePolicy( TQSizePolicy( (TQSizePolicy::SizeType)7, (TQSizePolicy::SizeType)7, _listAnswer->sizePolicy().hasHeightForWidth() ) );
connect( _listAnswer, TQT_SIGNAL( highlighted(TQListBoxItem *) ), TQT_TQOBJECT(this), TQT_SLOT( slotPreview(TQListBoxItem *) ) ); connect( _listAnswer, TQT_SIGNAL( highlighted(TQListBoxItem *) ), TQT_TQOBJECT(this), TQT_SLOT( slotPreview(TQListBoxItem *) ) );
connect( _listAnswer, TQT_SIGNAL( doubleClicked(TQListBoxItem *) ), TQT_TQOBJECT(this), TQT_SLOT( slotEditbyList(TQListBoxItem *) ) ); connect( _listAnswer, TQT_SIGNAL( doubleClicked(TQListBoxItem *) ), TQT_TQOBJECT(this), TQT_SLOT( slotEditbyList(TQListBoxItem *) ) );
@ -113,19 +113,19 @@ void KEducaBuilder::initMenuBar()
{ {
KStdAction::openNew(TQT_TQOBJECT(this), TQT_SLOT( slotFileOpenNew() ), actionCollection()); KStdAction::openNew(TQT_TQOBJECT(this), TQT_SLOT( slotFileOpenNew() ), actionCollection());
KStdAction::open (TQT_TQOBJECT(this), TQT_SLOT( slotFileOpen() ), actionCollection()); KStdAction::open (TQT_TQOBJECT(this), TQT_SLOT( slotFileOpen() ), actionCollection());
(void)new KAction(i18n("Open &Gallery..."), 0, 0, TQT_TQOBJECT(this), TQT_SLOT( slotGallery() ), actionCollection(), "open_gallery"); (void)new TDEAction(i18n("Open &Gallery..."), 0, 0, TQT_TQOBJECT(this), TQT_SLOT( slotGallery() ), actionCollection(), "open_gallery");
_recentFiles = KStdAction::openRecent(TQT_TQOBJECT(this), TQT_SLOT ( slotFileOpenURL(const KURL &)), actionCollection()); _recentFiles = KStdAction::openRecent(TQT_TQOBJECT(this), TQT_SLOT ( slotFileOpenURL(const KURL &)), actionCollection());
KStdAction::save (TQT_TQOBJECT(this), TQT_SLOT( slotFileSave() ), actionCollection()); KStdAction::save (TQT_TQOBJECT(this), TQT_SLOT( slotFileSave() ), actionCollection());
KStdAction::saveAs (TQT_TQOBJECT(this), TQT_SLOT( slotFileSaveAs() ), actionCollection()); KStdAction::saveAs (TQT_TQOBJECT(this), TQT_SLOT( slotFileSaveAs() ), actionCollection());
KStdAction::print (TQT_TQOBJECT(this), TQT_SLOT( slotFilePrint() ), actionCollection()); KStdAction::print (TQT_TQOBJECT(this), TQT_SLOT( slotFilePrint() ), actionCollection());
(void)new KAction(i18n("Document Info"), "info", 0, TQT_TQOBJECT(this), TQT_SLOT( slotHeader() ), actionCollection(), "info_doc"); (void)new TDEAction(i18n("Document Info"), "info", 0, TQT_TQOBJECT(this), TQT_SLOT( slotHeader() ), actionCollection(), "info_doc");
KStdAction::quit(TQT_TQOBJECT(this), TQT_SLOT( close() ), actionCollection()); KStdAction::quit(TQT_TQOBJECT(this), TQT_SLOT( close() ), actionCollection());
(void)new KAction(i18n("&Add..."), "addquestion", 0, TQT_TQOBJECT(this), TQT_SLOT( slotAdd() ), actionCollection(), "question_add"); (void)new TDEAction(i18n("&Add..."), "addquestion", 0, TQT_TQOBJECT(this), TQT_SLOT( slotAdd() ), actionCollection(), "question_add");
(void)new KAction(i18n("&Edit..."), "editquestion", 0, TQT_TQOBJECT(this), TQT_SLOT( slotEdit() ), actionCollection(), "question_edit"); (void)new TDEAction(i18n("&Edit..."), "editquestion", 0, TQT_TQOBJECT(this), TQT_SLOT( slotEdit() ), actionCollection(), "question_edit");
(void)new KAction(i18n("&Remove"), "delquestion", 0, TQT_TQOBJECT(this), TQT_SLOT( slotRemove() ), actionCollection(), "question_remove"); (void)new TDEAction(i18n("&Remove"), "delquestion", 0, TQT_TQOBJECT(this), TQT_SLOT( slotRemove() ), actionCollection(), "question_remove");
(void)new KAction(i18n("&Up"), "up", 0, TQT_TQOBJECT(this), TQT_SLOT( slotUp() ), actionCollection(), "question_up"); (void)new TDEAction(i18n("&Up"), "up", 0, TQT_TQOBJECT(this), TQT_SLOT( slotUp() ), actionCollection(), "question_up");
(void)new KAction(i18n("&Down"), "down", 0, TQT_TQOBJECT(this), TQT_SLOT( slotDown() ), actionCollection(), "question_down"); (void)new TDEAction(i18n("&Down"), "down", 0, TQT_TQOBJECT(this), TQT_SLOT( slotDown() ), actionCollection(), "question_down");
} }
/** Delete current document and start new */ /** Delete current document and start new */

@ -34,7 +34,7 @@
*@author Javier Campos *@author Javier Campos
*/ */
class KEducaBuilder : public KMainWindow { class KEducaBuilder : public TDEMainWindow {
Q_OBJECT Q_OBJECT
@ -76,9 +76,9 @@ private:
/** KEDUCA file */ /** KEDUCA file */
FileRead *_keducaFile; FileRead *_keducaFile;
/** Recent files */ /** Recent files */
KRecentFilesAction *_recentFiles; TDERecentFilesAction *_recentFiles;
/** List of answers */ /** List of answers */
KListBox *_listAnswer; TDEListBox *_listAnswer;
/** Preview */ /** Preview */
TQTextView *_preview; TQTextView *_preview;
/** Main splitter */ /** Main splitter */

@ -40,7 +40,7 @@ boxAsker::boxAsker(TQWidget *parent, KGmap *m, TQWidget *w, uint count) : askWid
p_lay -> addWidget(p_label); p_lay -> addWidget(p_label);
p_lay -> addWidget(bg, 1); p_lay -> addWidget(bg, 1);
p_lay -> addWidget(p_accept); p_lay -> addWidget(p_accept);
KAcceleratorManager::setNoAccel(this); TDEAcceleratorManager::setNoAccel(this);
} }
boxAsker::~boxAsker() boxAsker::~boxAsker()

@ -36,7 +36,7 @@
#include "mapparser.h" #include "mapparser.h"
#include "map.h" #include "map.h"
kgeography::kgeography() : KMainWindow(), p_firstShow(true), p_mustShowResultsDialog(false) kgeography::kgeography() : TDEMainWindow(), p_firstShow(true), p_mustShowResultsDialog(false)
{ {
p_map = 0; p_map = 0;
p_askWidget = 0; p_askWidget = 0;
@ -72,20 +72,20 @@ kgeography::kgeography() : KMainWindow(), p_firstShow(true), p_mustShowResultsDi
connect(p_askFlagDivisions, TQT_SIGNAL(clicked()), TQT_TQOBJECT(this), TQT_SLOT(askFlagDivisions())); connect(p_askFlagDivisions, TQT_SIGNAL(clicked()), TQT_TQOBJECT(this), TQT_SLOT(askFlagDivisions()));
connect(p_askDivisionFlags, TQT_SIGNAL(clicked()), TQT_TQOBJECT(this), TQT_SLOT(askDivisionFlags())); connect(p_askDivisionFlags, TQT_SIGNAL(clicked()), TQT_TQOBJECT(this), TQT_SLOT(askDivisionFlags()));
KAction *a = KStdAction::open(TQT_TQOBJECT(this), TQT_SLOT(openMap()), actionCollection(), "openMap"); TDEAction *a = KStdAction::open(TQT_TQOBJECT(this), TQT_SLOT(openMap()), actionCollection(), "openMap");
a -> setText(i18n("&Open Map...")); a -> setText(i18n("&Open Map..."));
KStdAction::quit(TQT_TQOBJECT(this), TQT_SLOT(close()), actionCollection(), "quit"); KStdAction::quit(TQT_TQOBJECT(this), TQT_SLOT(close()), actionCollection(), "quit");
p_zoom = new KToggleAction(i18n("&Zoom"), "viewmagfit", 0, 0, 0, actionCollection(), "zoom_select"); p_zoom = new TDEToggleAction(i18n("&Zoom"), "viewmagfit", 0, 0, 0, actionCollection(), "zoom_select");
p_zoom -> setEnabled(false); p_zoom -> setEnabled(false);
p_zoomOriginal = new KAction(i18n("&Original Size"), "viewmag1", 0, 0, 0, actionCollection(), "zoom_original"); p_zoomOriginal = new TDEAction(i18n("&Original Size"), "viewmag1", 0, 0, 0, actionCollection(), "zoom_original");
p_zoomOriginal -> setEnabled(false); p_zoomOriginal -> setEnabled(false);
p_move = new KToggleAction(i18n("&Move"), "move", 0, 0, 0, actionCollection(), "move"); p_move = new TDEToggleAction(i18n("&Move"), "move", 0, 0, 0, actionCollection(), "move");
p_move -> setEnabled(false); p_move -> setEnabled(false);
new KAction(i18n("Disclaimer"), 0, TQT_TQOBJECT(this), TQT_SLOT(disclaimer()), actionCollection(), "disclaimer"); new TDEAction(i18n("Disclaimer"), 0, TQT_TQOBJECT(this), TQT_SLOT(disclaimer()), actionCollection(), "disclaimer");
setupGUI(Keys | ToolBar | Save | Create); setupGUI(Keys | ToolBar | Save | Create);

@ -13,9 +13,9 @@
#include <kmainwindow.h> #include <kmainwindow.h>
class KAction; class TDEAction;
class KPushButton; class KPushButton;
class KToggleAction; class TDEToggleAction;
class TQHBox; class TQHBox;
class TQLabel; class TQLabel;
@ -24,7 +24,7 @@ class TQVBox;
class KGmap; class KGmap;
class askWidget; class askWidget;
class kgeography : public KMainWindow class kgeography : public TDEMainWindow
{ {
Q_OBJECT Q_OBJECT
@ -64,8 +64,8 @@ Q_OBJECT
KPushButton *p_askMap; KPushButton *p_askMap;
KPushButton *p_askFlagDivisions; KPushButton *p_askFlagDivisions;
KPushButton *p_askDivisionFlags; KPushButton *p_askDivisionFlags;
KToggleAction *p_zoom, *p_move; TDEToggleAction *p_zoom, *p_move;
KAction *p_zoomOriginal; TDEAction *p_zoomOriginal;
TQLabel *p_currentMap; TQLabel *p_currentMap;
KGmap *p_map; KGmap *p_map;

@ -45,7 +45,7 @@
KHangMan::KHangMan() KHangMan::KHangMan()
: KMainWindow( 0, "KHangMan" ), : TDEMainWindow( 0, "KHangMan" ),
m_view(new KHangManView(this)) m_view(new KHangManView(this))
{ {
m_newStuff = 0; m_newStuff = 0;
@ -57,7 +57,7 @@ KHangMan::KHangMan()
// Toolbar for special characters // Toolbar for special characters
secondToolbar = toolBar("secondToolBar"); secondToolbar = toolBar("secondToolBar");
secondToolbar->setBarPos(KToolBar::Bottom); secondToolbar->setBarPos(TDEToolBar::Bottom);
loadSettings(); loadSettings();
setAccent(); setAccent();
loadLangToolBar(); loadLangToolBar();
@ -74,21 +74,21 @@ KHangMan::~KHangMan()
void KHangMan::setupActions() void KHangMan::setupActions()
{ {
// Game->New // Game->New
KAction *action = new KAction(i18n("&New"), "filenew", CTRL+Key_N , TQT_TQOBJECT(m_view), TQT_SLOT(slotNewGame()), actionCollection(), "file_new"); TDEAction *action = new TDEAction(i18n("&New"), "filenew", CTRL+Key_N , TQT_TQOBJECT(m_view), TQT_SLOT(slotNewGame()), actionCollection(), "file_new");
action->setToolTip(i18n( "Play with a new word" )); action->setToolTip(i18n( "Play with a new word" ));
// Game->Get Words in New Language // Game->Get Words in New Language
new KAction( i18n("&Get Words in New Language..."), "knewstuff", CTRL+Key_G, TQT_TQOBJECT(this), TQT_SLOT( slotDownloadNewStuff() ), actionCollection(), "downloadnewstuff" ); new TDEAction( i18n("&Get Words in New Language..."), "knewstuff", CTRL+Key_G, TQT_TQOBJECT(this), TQT_SLOT( slotDownloadNewStuff() ), actionCollection(), "downloadnewstuff" );
KStdAction::quit(TQT_TQOBJECT(this), TQT_SLOT(slotQuit()), actionCollection()); KStdAction::quit(TQT_TQOBJECT(this), TQT_SLOT(slotQuit()), actionCollection());
m_levelAction = new KSelectAction(i18n("Le&vel"), 0, actionCollection(), "combo_level"); m_levelAction = new TDESelectAction(i18n("Le&vel"), 0, actionCollection(), "combo_level");
m_levelAction->setToolTip(i18n( "Choose the level" )); m_levelAction->setToolTip(i18n( "Choose the level" ));
m_levelAction->setWhatsThis(i18n( "Choose the level of difficulty" )); m_levelAction->setWhatsThis(i18n( "Choose the level of difficulty" ));
connect(m_levelAction, TQT_SIGNAL(activated(int)), TQT_TQOBJECT(this), TQT_SLOT(slotChangeLevel(int))); connect(m_levelAction, TQT_SIGNAL(activated(int)), TQT_TQOBJECT(this), TQT_SLOT(slotChangeLevel(int)));
// Action for selecting language. // Action for selecting language.
m_languageAction = new KSelectAction(i18n("&Language"), 0, actionCollection(), "languages"); m_languageAction = new TDESelectAction(i18n("&Language"), 0, actionCollection(), "languages");
m_languageAction->setItems(m_languageNames); m_languageAction->setItems(m_languageNames);
m_languageAction->setCurrentItem(m_languages.findIndex(Prefs::selectedLanguage())); m_languageAction->setCurrentItem(m_languages.findIndex(Prefs::selectedLanguage()));
connect(m_languageAction, TQT_SIGNAL(activated(int)), TQT_TQOBJECT(this), TQT_SLOT(slotChangeLanguage(int))); connect(m_languageAction, TQT_SIGNAL(activated(int)), TQT_TQOBJECT(this), TQT_SLOT(slotChangeLanguage(int)));
@ -97,7 +97,7 @@ void KHangMan::setupActions()
// Mode. Currently hard coded into Sea and Desert themes. // Mode. Currently hard coded into Sea and Desert themes.
TQStringList modes; TQStringList modes;
m_modeAction = new KSelectAction(i18n("L&ook"), 0, TQT_TQOBJECT(this), TQT_SLOT(slotChangeMode()), actionCollection(), "combo_mode"); m_modeAction = new TDESelectAction(i18n("L&ook"), 0, TQT_TQOBJECT(this), TQT_SLOT(slotChangeMode()), actionCollection(), "combo_mode");
modes += i18n("&Sea Theme"); modes += i18n("&Sea Theme");
modes += i18n("&Desert Theme"); modes += i18n("&Desert Theme");
m_modeAction->setItems(modes); m_modeAction->setItems(modes);
@ -473,7 +473,7 @@ void KHangMan::loadLangToolBar()
void KHangMan::slotPasteChar() void KHangMan::slotPasteChar()
{ {
KToolBarButton *charBut = (KToolBarButton* ) sender(); TDEToolBarButton *charBut = (TDEToolBarButton* ) sender();
m_view->enterLetter(m_allData[charBut->id()]); m_view->enterLetter(m_allData[charBut->id()]);
} }

@ -30,8 +30,8 @@
#include "khangmanview.h" #include "khangmanview.h"
class KSelectAction; class TDESelectAction;
class KToggleAction; class TDEToggleAction;
class KHNewStuff; class KHNewStuff;
class advanced; class advanced;
@ -48,7 +48,7 @@ const int IDS_HINT = 103;
* @author Anne-Marie Mahfouf <annemarie.mahfouf@free.fr> * @author Anne-Marie Mahfouf <annemarie.mahfouf@free.fr>
* @version 0.1 * @version 0.1
*/ */
class KHangMan : public KMainWindow class KHangMan : public TDEMainWindow
{ {
Q_OBJECT Q_OBJECT
@ -71,7 +71,7 @@ public:
void changeStatusbar(const TQString& text, int id); void changeStatusbar(const TQString& text, int id);
///Action that sets up the Language menu ///Action that sets up the Language menu
KSelectAction *m_languageAction; TDESelectAction *m_languageAction;
///Method to set the current language into the Statusbar and to pass it to KHangManView ///Method to set the current language into the Statusbar and to pass it to KHangManView
void setLanguages(); void setLanguages();
@ -146,11 +146,11 @@ private:
KHNewStuff *m_newStuff; KHNewStuff *m_newStuff;
// Actions in the Game menu // Actions in the Game menu
KSelectAction *m_levelAction; TDESelectAction *m_levelAction;
KSelectAction *m_modeAction; TDESelectAction *m_modeAction;
///Create the Special Characters Toolbar ///Create the Special Characters Toolbar
KToolBar *secondToolbar; TDEToolBar *secondToolbar;
// True if the language has no special chars, such as en, it and nl. // True if the language has no special chars, such as en, it and nl.
// FIXME: Reverse the bool. Negated bools are difficult to read. // FIXME: Reverse the bool. Negated bools are difficult to read.

@ -666,7 +666,7 @@
* Clean the status bar text on time in ConstructMode and * Clean the status bar text on time in ConstructMode and
TestConstructMode. TestConstructMode.
* Make SetCoordinateSystemAction into a KSelectAction, so the user * Make SetCoordinateSystemAction into a TDESelectAction, so the user
can see what kind of coordinate system he's currently using. can see what kind of coordinate system he's currently using.
* Some tuning of the UI: move Transformations and Tests menu into * Some tuning of the UI: move Transformations and Tests menu into

@ -51,7 +51,7 @@ Please select which to import:</string>
<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>FigureListBox</cstring> <cstring>FigureListBox</cstring>
</property> </property>

@ -58,20 +58,20 @@ static bool operator<( const TQColor& a, const TQColor& b )
} }
class ExporterAction class ExporterAction
: public KAction : public TDEAction
{ {
KigExporter* mexp; KigExporter* mexp;
const KigPart* mdoc; const KigPart* mdoc;
KigWidget* mw; KigWidget* mw;
public: public:
ExporterAction( const KigPart* doc, KigWidget* w, ExporterAction( const KigPart* doc, KigWidget* w,
KActionCollection* parent, KigExporter* exp ); TDEActionCollection* parent, KigExporter* exp );
void slotActivated(); void slotActivated();
}; };
ExporterAction::ExporterAction( const KigPart* doc, KigWidget* w, ExporterAction::ExporterAction( const KigPart* doc, KigWidget* w,
KActionCollection* parent, KigExporter* exp ) TDEActionCollection* parent, KigExporter* exp )
: KAction( exp->menuEntryName(), KShortcut(), 0, 0, parent ), : TDEAction( exp->menuEntryName(), TDEShortcut(), 0, 0, parent ),
mexp( exp ), mdoc( doc ), mw( w ) mexp( exp ), mdoc( doc ), mw( w )
{ {
TQString iconstr = exp->menuIcon(); TQString iconstr = exp->menuIcon();
@ -190,10 +190,10 @@ KigExportManager::~KigExportManager()
} }
void KigExportManager::addMenuAction( const KigPart* doc, KigWidget* w, void KigExportManager::addMenuAction( const KigPart* doc, KigWidget* w,
KActionCollection* coll ) TDEActionCollection* coll )
{ {
KActionMenu* m = TDEActionMenu* m =
new KActionMenu( i18n( "&Export To" ), coll, "file_export" ); new TDEActionMenu( i18n( "&Export To" ), coll, "file_export" );
for ( uint i = 0; i < mexporters.size(); ++i ) for ( uint i = 0; i < mexporters.size(); ++i )
m->insert( new ExporterAction( doc, w, coll, mexporters[i] ) ); m->insert( new ExporterAction( doc, w, coll, mexporters[i] ) );
} }

@ -24,7 +24,7 @@ class TQString;
class KigDocument; class KigDocument;
class KigPart; class KigPart;
class KigWidget; class KigWidget;
class KActionCollection; class TDEActionCollection;
class KigExporter; class KigExporter;
@ -36,7 +36,7 @@ class KigExportManager
public: public:
static KigExportManager* instance(); static KigExportManager* instance();
void addMenuAction( const KigPart* doc, KigWidget* w, void addMenuAction( const KigPart* doc, KigWidget* w,
KActionCollection* coll ); TDEActionCollection* coll );
}; };
/** /**

@ -169,7 +169,7 @@ void Kig::fileNew()
void Kig::openURL(const KURL& url) void Kig::openURL(const KURL& url)
{ {
// Called for opening a file by either the KRecentFilesAction or our // Called for opening a file by either the TDERecentFilesAction or our
// own fileOpen() method. // own fileOpen() method.
// if we are in the "initial state", we open the url in this window: // if we are in the "initial state", we open the url in this window:
if ( m_part->url().isEmpty() && ! m_part->isModified() ) if ( m_part->url().isEmpty() && ! m_part->isModified() )

@ -39,8 +39,8 @@
#include <tdeparts/mainwindow.h> #include <tdeparts/mainwindow.h>
#include <dcopclient.h> #include <dcopclient.h>
class KToggleAction; class TDEToggleAction;
class KRecentFilesAction; class TDERecentFilesAction;
/** /**
* This is the application "Shell". It has a menubar, toolbar, and * This is the application "Shell". It has a menubar, toolbar, and
@ -136,10 +136,10 @@ class Kig : public KParts::MainWindow
KParts::ReadWritePart *m_part; KParts::ReadWritePart *m_part;
//#ifdef KIG_DONT_USE_NEW_KMAINWINDOW_FEATURES //#ifdef KIG_DONT_USE_NEW_KMAINWINDOW_FEATURES
KToggleAction *m_toolbarAction; TDEToggleAction *m_toolbarAction;
KToggleAction *m_statusbarAction; TDEToggleAction *m_statusbarAction;
//#endif //#endif
KRecentFilesAction *m_recentFilesAction; TDERecentFilesAction *m_recentFilesAction;
TDEConfig* config; TDEConfig* config;

@ -83,17 +83,17 @@ TDEAboutData* KigPart::createAboutData()
} }
class SetCoordinateSystemAction class SetCoordinateSystemAction
: public KSelectAction : public TDESelectAction
{ {
KigPart& md; KigPart& md;
public: public:
SetCoordinateSystemAction( KigPart& d, KActionCollection* parent ); SetCoordinateSystemAction( KigPart& d, TDEActionCollection* parent );
void slotActivated( int index ); void slotActivated( int index );
}; };
SetCoordinateSystemAction::SetCoordinateSystemAction( SetCoordinateSystemAction::SetCoordinateSystemAction(
KigPart& d, KActionCollection* parent ) KigPart& d, TDEActionCollection* parent )
: KSelectAction( i18n( "&Set Coordinate System" ), 0, parent, "settings_set_coordinate_system" ), : TDESelectAction( i18n( "&Set Coordinate System" ), 0, parent, "settings_set_coordinate_system" ),
md( d ) md( d )
{ {
setItems( CoordinateSystemFactory::names() ); setItems( CoordinateSystemFactory::names() );
@ -218,7 +218,7 @@ void KigPart::setupActions()
this, TQT_SLOT( slotSelectAll() ), actionCollection() ); this, TQT_SLOT( slotSelectAll() ), actionCollection() );
aDeselectAll = KStdAction::deselect( aDeselectAll = KStdAction::deselect(
this, TQT_SLOT( slotDeselectAll() ), actionCollection() ); this, TQT_SLOT( slotDeselectAll() ), actionCollection() );
aInvertSelection = new KAction( aInvertSelection = new TDEAction(
i18n( "Invert Selection" ), "", 0, this, i18n( "Invert Selection" ), "", 0, this,
TQT_SLOT( slotInvertSelection() ), actionCollection(), TQT_SLOT( slotInvertSelection() ), actionCollection(),
"edit_invert_selection" ); "edit_invert_selection" );
@ -227,30 +227,30 @@ void KigPart::setupActions()
KIconLoader* l = instance()->iconLoader(); KIconLoader* l = instance()->iconLoader();
TQPixmap tmp; TQPixmap tmp;
aDeleteObjects = new KAction( aDeleteObjects = new TDEAction(
i18n("&Delete Objects"), "editdelete", Key_Delete, this, i18n("&Delete Objects"), "editdelete", Key_Delete, this,
TQT_SLOT(deleteObjects()), actionCollection(), "delete_objects"); TQT_SLOT(deleteObjects()), actionCollection(), "delete_objects");
aDeleteObjects->setToolTip(i18n("Delete the selected objects")); aDeleteObjects->setToolTip(i18n("Delete the selected objects"));
aCancelConstruction = new KAction( aCancelConstruction = new TDEAction(
i18n("Cancel Construction"), "stop", Key_Escape, this, i18n("Cancel Construction"), "stop", Key_Escape, this,
TQT_SLOT(cancelConstruction()), actionCollection(), "cancel_construction"); TQT_SLOT(cancelConstruction()), actionCollection(), "cancel_construction");
aCancelConstruction->setToolTip( aCancelConstruction->setToolTip(
i18n("Cancel the construction of the object being constructed")); i18n("Cancel the construction of the object being constructed"));
aCancelConstruction->setEnabled(false); aCancelConstruction->setEnabled(false);
aShowHidden = new KAction( aShowHidden = new TDEAction(
i18n("U&nhide All"), 0, this, TQT_SLOT( showHidden() ), i18n("U&nhide All"), 0, this, TQT_SLOT( showHidden() ),
actionCollection(), "edit_unhide_all"); actionCollection(), "edit_unhide_all");
aShowHidden->setToolTip(i18n("Show all hidden objects")); aShowHidden->setToolTip(i18n("Show all hidden objects"));
aShowHidden->setEnabled( true ); aShowHidden->setEnabled( true );
aNewMacro = new KAction( aNewMacro = new TDEAction(
i18n("&New Macro..."), "gear", 0, this, TQT_SLOT(newMacro()), i18n("&New Macro..."), "gear", 0, this, TQT_SLOT(newMacro()),
actionCollection(), "macro_action"); actionCollection(), "macro_action");
aNewMacro->setToolTip(i18n("Define a new macro")); aNewMacro->setToolTip(i18n("Define a new macro"));
aConfigureTypes = new KAction( aConfigureTypes = new TDEAction(
i18n("Manage &Types..."), 0, this, TQT_SLOT(editTypes()), i18n("Manage &Types..."), 0, this, TQT_SLOT(editTypes()),
actionCollection(), "types_edit"); actionCollection(), "types_edit");
aConfigureTypes->setToolTip(i18n("Manage macro types.")); aConfigureTypes->setToolTip(i18n("Manage macro types."));
@ -258,7 +258,7 @@ void KigPart::setupActions()
KigExportManager::instance()->addMenuAction( this, m_widget->realWidget(), KigExportManager::instance()->addMenuAction( this, m_widget->realWidget(),
actionCollection() ); actionCollection() );
KAction* a = KStdAction::zoomIn( TQT_TQOBJECT(m_widget), TQT_SLOT( slotZoomIn() ), TDEAction* a = KStdAction::zoomIn( TQT_TQOBJECT(m_widget), TQT_SLOT( slotZoomIn() ),
actionCollection() ); actionCollection() );
a->setToolTip( i18n( "Zoom in on the document" ) ); a->setToolTip( i18n( "Zoom in on the document" ) );
a->setWhatsThis( i18n( "Zoom in on the document" ) ); a->setWhatsThis( i18n( "Zoom in on the document" ) );
@ -284,7 +284,7 @@ void KigPart::setupActions()
a = KStdAction::fullScreen( TQT_TQOBJECT(m_widget), TQT_SLOT( toggleFullScreen() ), actionCollection(), (TQWidget*)(widget()->parent()),"fullscreen" ); a = KStdAction::fullScreen( TQT_TQOBJECT(m_widget), TQT_SLOT( toggleFullScreen() ), actionCollection(), (TQWidget*)(widget()->parent()),"fullscreen" );
#else #else
tmp = l->loadIcon( "window_fullscreen", KIcon::Toolbar ); tmp = l->loadIcon( "window_fullscreen", KIcon::Toolbar );
a = new KAction( a = new TDEAction(
i18n( "Full Screen" ), tmp, CTRL+SHIFT+Key_F, i18n( "Full Screen" ), tmp, CTRL+SHIFT+Key_F,
m_widget, TQT_SLOT( toggleFullScreen() ), m_widget, TQT_SLOT( toggleFullScreen() ),
actionCollection(), "fullscreen" ); actionCollection(), "fullscreen" );
@ -293,37 +293,37 @@ void KigPart::setupActions()
a->setWhatsThis( i18n( "View this document full-screen." ) ); a->setWhatsThis( i18n( "View this document full-screen." ) );
// TODO: an icon for this.. // TODO: an icon for this..
a = new KAction( a = new TDEAction(
i18n( "&Select Shown Area" ), "viewmagfit", 0, TQT_TQOBJECT(m_widget), TQT_SLOT( zoomRect() ), i18n( "&Select Shown Area" ), "viewmagfit", 0, TQT_TQOBJECT(m_widget), TQT_SLOT( zoomRect() ),
actionCollection(), "view_select_shown_rect" ); actionCollection(), "view_select_shown_rect" );
a->setToolTip( i18n( "Select the area that you want to be shown in the window." ) ); a->setToolTip( i18n( "Select the area that you want to be shown in the window." ) );
a->setWhatsThis( i18n( "Select the area that you want to be shown in the window." ) ); a->setWhatsThis( i18n( "Select the area that you want to be shown in the window." ) );
a = new KAction( a = new TDEAction(
i18n( "S&elect Zoom Area" ), "viewmag", 0, TQT_TQOBJECT(m_widget), TQT_SLOT( zoomArea() ), i18n( "S&elect Zoom Area" ), "viewmag", 0, TQT_TQOBJECT(m_widget), TQT_SLOT( zoomArea() ),
actionCollection(), "view_zoom_area" ); actionCollection(), "view_zoom_area" );
// a->setToolTip( i18n( "Select the area that you want to be shown in the window." ) ); // a->setToolTip( i18n( "Select the area that you want to be shown in the window." ) );
// a->setWhatsThis( i18n( "Select the area that you want to be shown in the window." ) ); // a->setWhatsThis( i18n( "Select the area that you want to be shown in the window." ) );
aToggleGrid = new KToggleAction( aToggleGrid = new TDEToggleAction(
i18n( "Show &Grid" ), 0, this, TQT_SLOT( toggleGrid() ), i18n( "Show &Grid" ), 0, this, TQT_SLOT( toggleGrid() ),
actionCollection(), "settings_show_grid" ); actionCollection(), "settings_show_grid" );
aToggleGrid->setToolTip( i18n( "Show or hide the grid." ) ); aToggleGrid->setToolTip( i18n( "Show or hide the grid." ) );
aToggleGrid->setChecked( true ); aToggleGrid->setChecked( true );
aToggleAxes = new KToggleAction( aToggleAxes = new TDEToggleAction(
i18n( "Show &Axes" ), 0, this, TQT_SLOT( toggleAxes() ), i18n( "Show &Axes" ), 0, this, TQT_SLOT( toggleAxes() ),
actionCollection(), "settings_show_axes" ); actionCollection(), "settings_show_axes" );
aToggleAxes->setToolTip( i18n( "Show or hide the axes." ) ); aToggleAxes->setToolTip( i18n( "Show or hide the axes." ) );
aToggleAxes->setChecked( true ); aToggleAxes->setChecked( true );
aToggleNightVision = new KToggleAction( aToggleNightVision = new TDEToggleAction(
i18n( "Wear Infrared Glasses" ), 0, this, TQT_SLOT( toggleNightVision() ), i18n( "Wear Infrared Glasses" ), 0, this, TQT_SLOT( toggleNightVision() ),
actionCollection(), "settings_toggle_nightvision" ); actionCollection(), "settings_toggle_nightvision" );
aToggleNightVision->setToolTip( i18n( "Enable/Disable hidden objects visibility." ) ); aToggleNightVision->setToolTip( i18n( "Enable/Disable hidden objects visibility." ) );
aToggleNightVision->setChecked( false ); aToggleNightVision->setChecked( false );
// select coordinate system KActionMenu.. // select coordinate system TDEActionMenu..
aCoordSystem = new SetCoordinateSystemAction( *this, actionCollection() ); aCoordSystem = new SetCoordinateSystemAction( *this, actionCollection() );
} }
@ -563,7 +563,7 @@ void KigPart::delObjects( const std::vector<ObjectHolder*>& os )
void KigPart::enableConstructActions( bool enabled ) void KigPart::enableConstructActions( bool enabled )
{ {
for_each( aActions.begin(), aActions.end(), for_each( aActions.begin(), aActions.end(),
bind2nd( mem_fun( &KAction::setEnabled ), bind2nd( mem_fun( &TDEAction::setEnabled ),
enabled ) ); enabled ) );
} }

@ -29,12 +29,12 @@
#include "../objects/common.h" #include "../objects/common.h"
class TDEAboutData; class TDEAboutData;
class KActionMenu; class TDEActionMenu;
class KCommandHistory; class KCommandHistory;
class KPrinter; class KPrinter;
class KSelectAction; class TDESelectAction;
class KToolBar; class TDEToolBar;
class KToggleAction; class TDEToggleAction;
class KURL; class KURL;
class TQWidget; class TQWidget;
@ -175,7 +175,7 @@ protected:
protected: protected:
KigMode* mMode; KigMode* mMode;
KSelectAction* aCoordSystem; TDESelectAction* aCoordSystem;
/** /**
* the command history * the command history
@ -192,26 +192,26 @@ public:
// the previous mode. Enabling/disabling is done at the same time, // the previous mode. Enabling/disabling is done at the same time,
// of course.. // of course..
// some MenuActions.. // some MenuActions..
TQPtrList<KAction> aMNewSegment; TQPtrList<TDEAction> aMNewSegment;
TQPtrList<KAction> aMNewPoint; TQPtrList<TDEAction> aMNewPoint;
TQPtrList<KAction> aMNewCircle; TQPtrList<TDEAction> aMNewCircle;
TQPtrList<KAction> aMNewLine; TQPtrList<TDEAction> aMNewLine;
TQPtrList<KAction> aMNewOther; TQPtrList<TDEAction> aMNewOther;
TQPtrList<KAction> aMNewAll; TQPtrList<TDEAction> aMNewAll;
TQPtrList<KAction> aMNewConic; TQPtrList<TDEAction> aMNewConic;
KAction* aCancelConstruction; TDEAction* aCancelConstruction;
KAction* aSelectAll; TDEAction* aSelectAll;
KAction* aDeselectAll; TDEAction* aDeselectAll;
KAction* aInvertSelection; TDEAction* aInvertSelection;
KAction* aDeleteObjects; TDEAction* aDeleteObjects;
KAction* aNewMacro; TDEAction* aNewMacro;
KAction* aShowHidden; TDEAction* aShowHidden;
KAction* aConfigureTypes; TDEAction* aConfigureTypes;
KToggleAction* aToggleGrid; TDEToggleAction* aToggleGrid;
KToggleAction* aToggleAxes; TDEToggleAction* aToggleAxes;
KToggleAction* aToggleNightVision; TDEToggleAction* aToggleNightVision;
std::vector<KigGUIAction*> aActions; std::vector<KigGUIAction*> aActions;
/** /**

@ -82,7 +82,7 @@ void ConstructibleAction::act( KigPart& d )
KigGUIAction::KigGUIAction( GUIAction* act, KigGUIAction::KigGUIAction( GUIAction* act,
KigPart& doc, KigPart& doc,
TQObject* parent ) TQObject* parent )
: KAction( act->descriptiveName(), : TDEAction( act->descriptiveName(),
doc.instance()->iconLoader()->loadIcon( doc.instance()->iconLoader()->loadIcon(
act->iconFileName(), KIcon::Toolbar, 0, KIcon::DefaultState, 0L, true ), act->iconFileName(), KIcon::Toolbar, 0, KIcon::DefaultState, 0L, true ),
act->shortcut(), act->shortcut(),

@ -32,7 +32,7 @@ class GUIAction;
class KigPart; class KigPart;
class KigGUIAction class KigGUIAction
: public KAction : public TDEAction
{ {
Q_OBJECT Q_OBJECT

@ -185,7 +185,7 @@ NormalModePopupObjects::NormalModePopupObjects( KigPart& part,
NormalMode& mode, NormalMode& mode,
const std::vector<ObjectHolder*>& objs, const std::vector<ObjectHolder*>& objs,
const TQPoint& plc ) const TQPoint& plc )
: KPopupMenu( &view ), mplc( plc ), mpart( part ), mview( view ), mobjs( objs ), : TDEPopupMenu( &view ), mplc( plc ), mpart( part ), mview( view ), mobjs( objs ),
mmode( mode ), monlylabels( false ) mmode( mode ), monlylabels( false )
{ {
bool empty = objs.empty(); bool empty = objs.empty();
@ -1177,7 +1177,7 @@ int ObjectChooserPopup::getObjectFromList( const TQPoint& p, KigWidget* w,
ObjectChooserPopup::ObjectChooserPopup( const TQPoint& p, KigWidget& view, ObjectChooserPopup::ObjectChooserPopup( const TQPoint& p, KigWidget& view,
const std::vector<ObjectHolder*>& objs ) const std::vector<ObjectHolder*>& objs )
: KPopupMenu(), mplc( p ), mview( view ), mobjs( objs ), mselected( -1 ) : TDEPopupMenu(), mplc( p ), mview( view ), mobjs( objs ), mselected( -1 )
{ {
for ( uint i = 0; i < mobjs.size(); i++ ) for ( uint i = 0; i < mobjs.size(); i++ )
{ {

@ -44,7 +44,7 @@ class ObjectHolder;
* PopupActionProviders are disabled, and some others enabled.. * PopupActionProviders are disabled, and some others enabled..
*/ */
class NormalModePopupObjects class NormalModePopupObjects
: public KPopupMenu : public TDEPopupMenu
{ {
Q_OBJECT Q_OBJECT
@ -115,7 +115,7 @@ private:
* You can't use this class directly, but these's a convenience method. * You can't use this class directly, but these's a convenience method.
*/ */
class ObjectChooserPopup class ObjectChooserPopup
: public KPopupMenu : public TDEPopupMenu
{ {
Q_OBJECT Q_OBJECT

@ -50,11 +50,11 @@ class MacroListElement
{ {
Macro* macro; Macro* macro;
public: public:
MacroListElement( KListView* lv, Macro* m ); MacroListElement( TDEListView* lv, Macro* m );
Macro* getMacro() const { return macro; } Macro* getMacro() const { return macro; }
}; };
MacroListElement::MacroListElement( KListView* lv, Macro* m ) MacroListElement::MacroListElement( TDEListView* lv, Macro* m )
: TQListViewItem( lv, TQString(), m->action->descriptiveName(), m->action->description() ), : TQListViewItem( lv, TQString(), m->action->descriptiveName(), m->action->description() ),
macro( m ) macro( m )
{ {

@ -36,7 +36,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>Icon</string> <string>Icon</string>

@ -83,7 +83,7 @@ NewScriptWizard::NewScriptWizard( TQWidget* parent, ScriptModeBase* mode )
hli = dynamic_cast<KTextEditor::HighlightingInterface*>( document ); hli = dynamic_cast<KTextEditor::HighlightingInterface*>( document );
// displaying the left border with line numbers // displaying the left border with line numbers
KToggleAction *a = dynamic_cast<KToggleAction*>( editor->actionCollection()->action("view_line_numbers") ); TDEToggleAction *a = dynamic_cast<TDEToggleAction*>( editor->actionCollection()->action("view_line_numbers") );
a->activate(); a->activate();
// saving the state of dynamic word wrap and disabling it // saving the state of dynamic word wrap and disabling it
@ -94,14 +94,14 @@ NewScriptWizard::NewScriptWizard( TQWidget* parent, ScriptModeBase* mode )
noHlStyle = hli->hlMode(); noHlStyle = hli->hlMode();
// creating the popup menu // creating the popup menu
KPopupMenu* pm = new KPopupMenu( editor ); TDEPopupMenu* pm = new TDEPopupMenu( editor );
// creating the actions for the code editor... // creating the actions for the code editor...
KActionCollection* ac = new KActionCollection( editor ); TDEActionCollection* ac = new TDEActionCollection( editor );
KAction* undoAction = KStdAction::undo( TQT_TQOBJECT(this), TQT_SLOT( slotUndo() ), ac ); TDEAction* undoAction = KStdAction::undo( TQT_TQOBJECT(this), TQT_SLOT( slotUndo() ), ac );
KAction* redoAction = KStdAction::redo( TQT_TQOBJECT(this), TQT_SLOT( slotRedo() ), ac ); TDEAction* redoAction = KStdAction::redo( TQT_TQOBJECT(this), TQT_SLOT( slotRedo() ), ac );
KAction* cutAction = KStdAction::cut( TQT_TQOBJECT(this), TQT_SLOT( slotCut() ), ac ); TDEAction* cutAction = KStdAction::cut( TQT_TQOBJECT(this), TQT_SLOT( slotCut() ), ac );
KAction* copyAction = KStdAction::copy( TQT_TQOBJECT(this), TQT_SLOT( slotCopy() ), ac ); TDEAction* copyAction = KStdAction::copy( TQT_TQOBJECT(this), TQT_SLOT( slotCopy() ), ac );
KAction* pasteAction = KStdAction::paste( TQT_TQOBJECT(this), TQT_SLOT( slotPaste() ), ac ); TDEAction* pasteAction = KStdAction::paste( TQT_TQOBJECT(this), TQT_SLOT( slotPaste() ), ac );
// ... and plugging them into the popup menu (to build it, of course :) ) // ... and plugging them into the popup menu (to build it, of course :) )
undoAction->plug( pm ); undoAction->plug( pm );
redoAction->plug( pm ); redoAction->plug( pm );

@ -76,7 +76,7 @@ void ConfigDictionaries::writeDictionaries()
void ConfigDictionaries::readDictionaryList(const TQString& group) void ConfigDictionaries::readDictionaryList(const TQString& group)
{ {
KListView* list; TDEListView* list;
TQStringList names; TQStringList names;
if (group == "edict") if (group == "edict")
{ {
@ -104,7 +104,7 @@ void ConfigDictionaries::readDictionaryList(const TQString& group)
void ConfigDictionaries::writeDictionaryList(const TQString& group) void ConfigDictionaries::writeDictionaryList(const TQString& group)
{ {
KListView* list; TDEListView* list;
if (group == "edict") if (group == "edict")
list = edictList; list = edictList;
else //if (group == "kanjidic") else //if (group == "kanjidic")
@ -138,7 +138,7 @@ void ConfigDictionaries::slotDelSelEdict() { delSel(edictList); }
void ConfigDictionaries::slotAddKanjidic() { add(kanjidicList); } void ConfigDictionaries::slotAddKanjidic() { add(kanjidicList); }
void ConfigDictionaries::slotDelSelKanjidic() { delSel(kanjidicList); } void ConfigDictionaries::slotDelSelKanjidic() { delSel(kanjidicList); }
void ConfigDictionaries::add(KListView* list) void ConfigDictionaries::add(TDEListView* list)
{ {
TQListViewItem *item = list->firstChild(); TQListViewItem *item = list->firstChild();
TQString filename = KFileDialog::getOpenFileName(item? TQFileInfo(item->text(1)).dirPath(true).append("/") : TQString()); TQString filename = KFileDialog::getOpenFileName(item? TQFileInfo(item->text(1)).dirPath(true).append("/") : TQString());
@ -149,7 +149,7 @@ void ConfigDictionaries::add(KListView* list)
emit widgetChanged(); emit widgetChanged();
} }
void ConfigDictionaries::delSel(KListView* list) void ConfigDictionaries::delSel(TDEListView* list)
{ {
TQListViewItem *file = list->selectedItem(); TQListViewItem *file = list->selectedItem();
if (!file) if (!file)

@ -54,8 +54,8 @@ private:
Config* config; Config* config;
void readDictionaryList(const TQString& group); void readDictionaryList(const TQString& group);
void writeDictionaryList(const TQString& group); void writeDictionaryList(const TQString& group);
void add(KListView* list); void add(TDEListView* list);
void delSel(KListView* list); void delSel(TDEListView* list);
}; };
#endif #endif

@ -88,7 +88,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>Name</string> <string>Name</string>
@ -226,7 +226,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>Name</string> <string>Name</string>

@ -19,7 +19,7 @@
<property name="name"> <property name="name">
<cstring>unnamed</cstring> <cstring>unnamed</cstring>
</property> </property>
<widget class="KFontChooser"> <widget class="TDEFontChooser">
<property name="name"> <property name="name">
<cstring>kcfg_font</cstring> <cstring>kcfg_font</cstring>
</property> </property>

@ -46,7 +46,7 @@
#include <cassert> #include <cassert>
TopLevel::TopLevel(TQWidget *parent, const char *name) : KMainWindow(parent, name) TopLevel::TopLevel(TQWidget *parent, const char *name) : TDEMainWindow(parent, name)
{ {
#if TDE_VERSION > 305 #if TDE_VERSION > 305
setStandardToolBarMenuEnabled(true); setStandardToolBarMenuEnabled(true);
@ -67,27 +67,27 @@ TopLevel::TopLevel(TQWidget *parent, const char *name) : KMainWindow(parent, nam
(void) KStdAction::print(TQT_TQOBJECT(this), TQT_SLOT(print()), actionCollection()); (void) KStdAction::print(TQT_TQOBJECT(this), TQT_SLOT(print()), actionCollection());
(void) KStdAction::preferences(TQT_TQOBJECT(this), TQT_SLOT(slotConfigure()), actionCollection()); (void) KStdAction::preferences(TQT_TQOBJECT(this), TQT_SLOT(slotConfigure()), actionCollection());
KStdAction::keyBindings(guiFactory(), TQT_SLOT(configureShortcuts()), actionCollection()); KStdAction::keyBindings(guiFactory(), TQT_SLOT(configureShortcuts()), actionCollection());
(void) new KAction(i18n("&Learn"), "pencil", CTRL+Key_L, TQT_TQOBJECT(this), TQT_SLOT(createLearn()), actionCollection(), "file_learn"); (void) new TDEAction(i18n("&Learn"), "pencil", CTRL+Key_L, TQT_TQOBJECT(this), TQT_SLOT(createLearn()), actionCollection(), "file_learn");
(void) new KAction(i18n("&Dictionary Editor..."), "edit", 0, TQT_TQOBJECT(this), TQT_SLOT(createEEdit()), actionCollection(), "dict_editor"); (void) new TDEAction(i18n("&Dictionary Editor..."), "edit", 0, TQT_TQOBJECT(this), TQT_SLOT(createEEdit()), actionCollection(), "dict_editor");
(void) new KAction(i18n("Ra&dical Search..."), "gear", CTRL+Key_R, TQT_TQOBJECT(this), TQT_SLOT(radicalSearch()), actionCollection(), "search_radical"); (void) new TDEAction(i18n("Ra&dical Search..."), "gear", CTRL+Key_R, TQT_TQOBJECT(this), TQT_SLOT(radicalSearch()), actionCollection(), "search_radical");
Edit = new EditAction(i18n("Search Edit"), 0, TQT_TQOBJECT(this), TQT_SLOT(search()), actionCollection(), "search_edit"); Edit = new EditAction(i18n("Search Edit"), 0, TQT_TQOBJECT(this), TQT_SLOT(search()), actionCollection(), "search_edit");
(void) new KAction(i18n("&Clear Search Bar"), BarIcon("locationbar_erase", 16), CTRL+Key_N, Edit, TQT_SLOT(clear()), actionCollection(), "clear_search"); (void) new TDEAction(i18n("&Clear Search Bar"), BarIcon("locationbar_erase", 16), CTRL+Key_N, Edit, TQT_SLOT(clear()), actionCollection(), "clear_search");
(void) new KAction(i18n("S&earch"), "key_enter", 0, TQT_TQOBJECT(this), TQT_SLOT(search()), actionCollection(), "search"); (void) new TDEAction(i18n("S&earch"), "key_enter", 0, TQT_TQOBJECT(this), TQT_SLOT(search()), actionCollection(), "search");
(void) new KAction(i18n("Search with &Beginning of Word"), 0, TQT_TQOBJECT(this), TQT_SLOT(searchBeginning()), actionCollection(), "search_beginning"); (void) new TDEAction(i18n("Search with &Beginning of Word"), 0, TQT_TQOBJECT(this), TQT_SLOT(searchBeginning()), actionCollection(), "search_beginning");
(void) new KAction(i18n("Search &Anywhere"), 0, TQT_TQOBJECT(this), TQT_SLOT(searchAnywhere()), actionCollection(), "search_anywhere"); (void) new TDEAction(i18n("Search &Anywhere"), 0, TQT_TQOBJECT(this), TQT_SLOT(searchAnywhere()), actionCollection(), "search_anywhere");
(void) new KAction(i18n("Stro&kes"), "paintbrush", CTRL+Key_S, TQT_TQOBJECT(this), TQT_SLOT(strokeSearch()), actionCollection(), "search_stroke"); (void) new TDEAction(i18n("Stro&kes"), "paintbrush", CTRL+Key_S, TQT_TQOBJECT(this), TQT_SLOT(strokeSearch()), actionCollection(), "search_stroke");
(void) new KAction(i18n("&Grade"), "leftjust", CTRL+Key_G, TQT_TQOBJECT(this), TQT_SLOT(gradeSearch()), actionCollection(), "search_grade"); (void) new TDEAction(i18n("&Grade"), "leftjust", CTRL+Key_G, TQT_TQOBJECT(this), TQT_SLOT(gradeSearch()), actionCollection(), "search_grade");
kanjiCB = new KToggleAction(i18n("&Kanjidic"), "kanjidic", CTRL+Key_K, TQT_TQOBJECT(this), TQT_SLOT(kanjiDictChange()), actionCollection(), "kanji_toggle"); kanjiCB = new TDEToggleAction(i18n("&Kanjidic"), "kanjidic", CTRL+Key_K, TQT_TQOBJECT(this), TQT_SLOT(kanjiDictChange()), actionCollection(), "kanji_toggle");
deinfCB = new KToggleAction(i18n("&Deinflect Verbs in Regular Search"), 0, TQT_TQOBJECT(this), TQT_SLOT(kanjiDictChange()), actionCollection(), "deinf_toggle"); deinfCB = new TDEToggleAction(i18n("&Deinflect Verbs in Regular Search"), 0, TQT_TQOBJECT(this), TQT_SLOT(kanjiDictChange()), actionCollection(), "deinf_toggle");
comCB = new KToggleAction(i18n("&Filter Rare"), "filter", CTRL+Key_F, TQT_TQOBJECT(this), TQT_SLOT(toggleCom()), actionCollection(), "common"); comCB = new TDEToggleAction(i18n("&Filter Rare"), "filter", CTRL+Key_F, TQT_TQOBJECT(this), TQT_SLOT(toggleCom()), actionCollection(), "common");
autoSearchToggle = new KToggleAction(i18n("&Automatically Search Clipboard Selections"), "find", 0, TQT_TQOBJECT(this), TQT_SLOT(kanjiDictChange()), actionCollection(), "autosearch_toggle"); autoSearchToggle = new TDEToggleAction(i18n("&Automatically Search Clipboard Selections"), "find", 0, TQT_TQOBJECT(this), TQT_SLOT(kanjiDictChange()), actionCollection(), "autosearch_toggle");
irAction = new KAction(i18n("Search &in Results"), "find", CTRL+Key_I, TQT_TQOBJECT(this), TQT_SLOT(resultSearch()), actionCollection(), "search_in_results"); irAction = new TDEAction(i18n("Search &in Results"), "find", CTRL+Key_I, TQT_TQOBJECT(this), TQT_SLOT(resultSearch()), actionCollection(), "search_in_results");
(void) KStdAction::configureToolbars(TQT_TQOBJECT(this), TQT_SLOT(configureToolBars()), actionCollection()); (void) KStdAction::configureToolbars(TQT_TQOBJECT(this), TQT_SLOT(configureToolBars()), actionCollection());
addAction = new KAction(i18n("Add &Kanji to Learning List"), 0, TQT_TQOBJECT(this), TQT_SLOT(addToList()), actionCollection(), "add"); addAction = new TDEAction(i18n("Add &Kanji to Learning List"), 0, TQT_TQOBJECT(this), TQT_SLOT(addToList()), actionCollection(), "add");
addAction->setEnabled(false); addAction->setEnabled(false);
(void) new KAction(i18n("Configure &Global Shortcuts..."), "configure_shortcuts", 0, TQT_TQOBJECT(this), TQT_SLOT(configureGlobalKeys()), actionCollection(), "options_configure_keybinding"); (void) new TDEAction(i18n("Configure &Global Shortcuts..."), "configure_shortcuts", 0, TQT_TQOBJECT(this), TQT_SLOT(configureGlobalKeys()), actionCollection(), "options_configure_keybinding");
historyAction = new KListAction(i18n("&History"), 0, 0, 0, actionCollection(), "history"); historyAction = new TDEListAction(i18n("&History"), 0, 0, 0, actionCollection(), "history");
connect(historyAction, TQT_SIGNAL(activated(int)), TQT_TQOBJECT(this), TQT_SLOT(goInHistory(int))); connect(historyAction, TQT_SIGNAL(activated(int)), TQT_TQOBJECT(this), TQT_SLOT(goInHistory(int)));
backAction = KStdAction::back(TQT_TQOBJECT(this), TQT_SLOT(back()), actionCollection()); backAction = KStdAction::back(TQT_TQOBJECT(this), TQT_SLOT(back()), actionCollection());
forwardAction = KStdAction::forward(TQT_TQOBJECT(this), TQT_SLOT(forward()), actionCollection()); forwardAction = KStdAction::forward(TQT_TQOBJECT(this), TQT_SLOT(forward()), actionCollection());

@ -33,12 +33,12 @@ class ConfigureDialog;
class EditAction; class EditAction;
class TDEGlobalAccel; class TDEGlobalAccel;
class KStatusBar; class KStatusBar;
class KToggleAction; class TDEToggleAction;
class KListAction; class TDEListAction;
class Learn; class Learn;
class ResultView; class ResultView;
class KDE_EXPORT TopLevel : public KMainWindow class KDE_EXPORT TopLevel : public TDEMainWindow
{ {
Q_OBJECT Q_OBJECT
@ -100,15 +100,15 @@ private:
Rad _Rad; Rad _Rad;
Deinf::Index _DeinfIndex; Deinf::Index _DeinfIndex;
ResultView *_ResultView; ResultView *_ResultView;
KToggleAction *kanjiCB; TDEToggleAction *kanjiCB;
KToggleAction *autoSearchToggle; TDEToggleAction *autoSearchToggle;
KToggleAction *deinfCB; TDEToggleAction *deinfCB;
KListAction *historyAction; TDEListAction *historyAction;
KAction *irAction; TDEAction *irAction;
KAction *addAction; TDEAction *addAction;
KToggleAction *comCB; TDEToggleAction *comCB;
KAction *backAction; TDEAction *backAction;
KAction *forwardAction; TDEAction *forwardAction;
TDEGlobalAccel *Accel; TDEGlobalAccel *Accel;

@ -61,7 +61,7 @@ int LearnItem::compare(TQListViewItem *item, int col, bool ascending) const
const int Learn::numberOfAnswers = 5; const int Learn::numberOfAnswers = 5;
Learn::Learn(Dict::Index *parentDict, TQWidget *parent, const char *name) Learn::Learn(Dict::Index *parentDict, TQWidget *parent, const char *name)
: KMainWindow(parent, name), initialized(false), isMod(false), prevItem(0), curItem(0) : TDEMainWindow(parent, name), initialized(false), isMod(false), prevItem(0), curItem(0)
{ {
index = parentDict; index = parentDict;
@ -83,7 +83,7 @@ Learn::Learn(Dict::Index *parentDict, TQWidget *parent, const char *name)
View->setBasicMode(true); View->setBasicMode(true);
connect(View, TQT_SIGNAL(linkClicked(const TQString &)), this, TQT_SIGNAL(linkClicked(const TQString &))); connect(View, TQT_SIGNAL(linkClicked(const TQString &)), this, TQT_SIGNAL(linkClicked(const TQString &)));
List = new KListView(listTop); List = new TDEListView(listTop);
List->addColumn(i18n("Kanji")); List->addColumn(i18n("Kanji"));
List->addColumn(i18n("Meanings")); List->addColumn(i18n("Meanings"));
@ -99,7 +99,7 @@ Learn::Learn(Dict::Index *parentDict, TQWidget *parent, const char *name)
List->setMultiSelection(true); List->setMultiSelection(true);
List->setDragEnabled(true); List->setDragEnabled(true);
List->setSorting(4); List->setSorting(4);
List->setSelectionModeExt(KListView::Extended); List->setSelectionModeExt(TDEListView::Extended);
connect(List, TQT_SIGNAL(executed(TQListViewItem *)), TQT_SLOT(showKanji(TQListViewItem *))); connect(List, TQT_SIGNAL(executed(TQListViewItem *)), TQT_SLOT(showKanji(TQListViewItem *)));
connect(List, TQT_SIGNAL(selectionChanged()), this, TQT_SLOT(itemSelectionChanged())); connect(List, TQT_SIGNAL(selectionChanged()), this, TQT_SLOT(itemSelectionChanged()));
@ -113,20 +113,20 @@ Learn::Learn(Dict::Index *parentDict, TQWidget *parent, const char *name)
grades.append(i18n("Others in Jouyou")); grades.append(i18n("Others in Jouyou"));
grades.append(i18n("Jinmeiyou")); grades.append(i18n("Jinmeiyou"));
/*KAction *closeAction = */(void) KStdAction::close(TQT_TQOBJECT(this), TQT_SLOT(close()), actionCollection()); /*TDEAction *closeAction = */(void) KStdAction::close(TQT_TQOBJECT(this), TQT_SLOT(close()), actionCollection());
printAct = KStdAction::print(TQT_TQOBJECT(this), TQT_SLOT(print()), actionCollection()); printAct = KStdAction::print(TQT_TQOBJECT(this), TQT_SLOT(print()), actionCollection());
forwardAct = KStdAction::forward(TQT_TQOBJECT(this), TQT_SLOT(next()), actionCollection()); forwardAct = KStdAction::forward(TQT_TQOBJECT(this), TQT_SLOT(next()), actionCollection());
forwardAct->plug(toolBar()); forwardAct->plug(toolBar());
backAct = KStdAction::back(TQT_TQOBJECT(this), TQT_SLOT(prev()), actionCollection()); backAct = KStdAction::back(TQT_TQOBJECT(this), TQT_SLOT(prev()), actionCollection());
backAct->plug(toolBar()); backAct->plug(toolBar());
cheatAct = new KAction(i18n("&Cheat"), CTRL + Key_C, TQT_TQOBJECT(this), TQT_SLOT(cheat()), actionCollection(), "cheat"); cheatAct = new TDEAction(i18n("&Cheat"), CTRL + Key_C, TQT_TQOBJECT(this), TQT_SLOT(cheat()), actionCollection(), "cheat");
randomAct = new KAction(i18n("&Random"), "goto", CTRL + Key_R, TQT_TQOBJECT(this), TQT_SLOT(random()), actionCollection(), "random"); randomAct = new TDEAction(i18n("&Random"), "goto", CTRL + Key_R, TQT_TQOBJECT(this), TQT_SLOT(random()), actionCollection(), "random");
gradeAct = new KListAction(i18n("Grade"), 0, 0, 0, actionCollection(), "grade"); gradeAct = new TDEListAction(i18n("Grade"), 0, 0, 0, actionCollection(), "grade");
gradeAct->setItems(grades); gradeAct->setItems(grades);
connect(gradeAct, TQT_SIGNAL(activated(const TQString&)), TQT_SLOT(updateGrade())); connect(gradeAct, TQT_SIGNAL(activated(const TQString&)), TQT_SLOT(updateGrade()));
removeAct = new KAction(i18n("&Delete"), "edit_remove", CTRL + Key_X, TQT_TQOBJECT(this), TQT_SLOT(del()), actionCollection(), "del"); removeAct = new TDEAction(i18n("&Delete"), "edit_remove", CTRL + Key_X, TQT_TQOBJECT(this), TQT_SLOT(del()), actionCollection(), "del");
addAct = new KAction(i18n("&Add"), "edit_add", CTRL + Key_A, TQT_TQOBJECT(this), TQT_SLOT(add()), actionCollection(), "add"); addAct = new TDEAction(i18n("&Add"), "edit_add", CTRL + Key_A, TQT_TQOBJECT(this), TQT_SLOT(add()), actionCollection(), "add");
addAllAct = new KAction(i18n("Add A&ll"), 0, TQT_TQOBJECT(this), TQT_SLOT(addAll()), actionCollection(), "addall"); addAllAct = new TDEAction(i18n("Add A&ll"), 0, TQT_TQOBJECT(this), TQT_SLOT(addAll()), actionCollection(), "addall");
newAct = KStdAction::openNew(TQT_TQOBJECT(this), TQT_SLOT(openNew()), actionCollection()); newAct = KStdAction::openNew(TQT_TQOBJECT(this), TQT_SLOT(openNew()), actionCollection());
openAct = KStdAction::open(TQT_TQOBJECT(this), TQT_SLOT(open()), actionCollection()); openAct = KStdAction::open(TQT_TQOBJECT(this), TQT_SLOT(open()), actionCollection());
saveAct = KStdAction::save(TQT_TQOBJECT(this), TQT_SLOT(save()), actionCollection()); saveAct = KStdAction::save(TQT_TQOBJECT(this), TQT_SLOT(save()), actionCollection());

@ -28,7 +28,7 @@
#include "widgets.h" #include "widgets.h"
class KAction; class TDEAction;
class KPushButton; class KPushButton;
class TQButtonGroup; class TQButtonGroup;
class TQListViewItem; class TQListViewItem;
@ -43,7 +43,7 @@ public:
int compare(TQListViewItem *item, int col, bool ascending) const; int compare(TQListViewItem *item, int col, bool ascending) const;
}; };
class Learn : public KMainWindow class Learn : public TDEMainWindow
{ {
Q_OBJECT Q_OBJECT
@ -118,7 +118,7 @@ class Learn : public KMainWindow
Dict::Index *index; Dict::Index *index;
KListView *List; TDEListView *List;
KPushButton *Save; KPushButton *Save;
KPushButton *Del; KPushButton *Del;
KPushButton *qDel; KPushButton *qDel;
@ -146,19 +146,19 @@ class Learn : public KMainWindow
// to the list. // to the list.
TQString randomMeaning(TQStringList &oldMeanings); TQString randomMeaning(TQStringList &oldMeanings);
KAction *forwardAct; TDEAction *forwardAct;
KAction *printAct; TDEAction *printAct;
KAction *backAct; TDEAction *backAct;
KAction *cheatAct; TDEAction *cheatAct;
KAction *saveAct; TDEAction *saveAct;
KAction *openAct; TDEAction *openAct;
KAction *newAct; TDEAction *newAct;
KAction *saveAsAct; TDEAction *saveAsAct;
KAction *addAct; TDEAction *addAct;
KAction *addAllAct; TDEAction *addAllAct;
KAction *removeAct; TDEAction *removeAct;
KAction *randomAct; TDEAction *randomAct;
KListAction *gradeAct; TDEListAction *gradeAct;
int getCurrentGrade(void); int getCurrentGrade(void);
void setCurrentGrade(int grade); void setCurrentGrade(int grade);

@ -22,9 +22,9 @@
#ifndef OPTIONDIALOG_H #ifndef OPTIONDIALOG_H
#define OPTIONDIALOG_H #define OPTIONDIALOG_H
class KListView; class TDEListView;
class TQString; class TQString;
class KFontChooser; class TDEFontChooser;
class TQLabel; class TQLabel;
class TQPushButton; class TQPushButton;
class TQComboBox; class TQComboBox;

@ -276,13 +276,13 @@ RadWidget::RadWidget(Rad *_rad, TQWidget *parent, const char *name) : TQWidget(p
TQToolTip::add(strokesSpin, i18n("Show radicals having this number of strokes")); TQToolTip::add(strokesSpin, i18n("Show radicals having this number of strokes"));
middlevLayout->addWidget(strokesSpin); middlevLayout->addWidget(strokesSpin);
List = new KListBox(this); List = new TDEListBox(this);
middlevLayout->addWidget(List); middlevLayout->addWidget(List);
connect(List, TQT_SIGNAL(executed(TQListBoxItem *)), this, TQT_SLOT(executed(TQListBoxItem *))); connect(List, TQT_SIGNAL(executed(TQListBoxItem *)), this, TQT_SLOT(executed(TQListBoxItem *)));
connect(strokesSpin, TQT_SIGNAL(valueChanged(int)), this, TQT_SLOT(updateList(int))); connect(strokesSpin, TQT_SIGNAL(valueChanged(int)), this, TQT_SLOT(updateList(int)));
TQVBoxLayout *rightvlayout = new TQVBoxLayout(hlayout, KDialog::spacingHint()); TQVBoxLayout *rightvlayout = new TQVBoxLayout(hlayout, KDialog::spacingHint());
selectedList = new KListBox(this); selectedList = new TDEListBox(this);
rightvlayout->addWidget(selectedList); rightvlayout->addWidget(selectedList);
connect(selectedList, TQT_SIGNAL(selectionChanged()), this, TQT_SLOT(selectionChanged())); connect(selectedList, TQT_SIGNAL(selectionChanged()), this, TQT_SLOT(selectionChanged()));

@ -30,7 +30,7 @@ class TQLabel;
class TQListBoxItem; class TQListBoxItem;
class TQSpinBox; class TQSpinBox;
class KPushButton; class KPushButton;
class KListBox; class TDEListBox;
class TQButtonGroup; class TQButtonGroup;
class KDE_EXPORT Radical class KDE_EXPORT Radical
@ -110,8 +110,8 @@ class KDE_EXPORT RadWidget : public TQWidget
KPushButton *clear; KPushButton *clear;
TQButtonGroup *hotlistGroup; TQButtonGroup *hotlistGroup;
TQCheckBox *totalStrokes; TQCheckBox *totalStrokes;
KListBox *List; TDEListBox *List;
KListBox *selectedList; TDEListBox *selectedList;
TQStringList selected; TQStringList selected;
Rad *rad; Rad *rad;

@ -293,10 +293,10 @@ void ResultView::updateFont()
// nice EDICT dictionary editor // nice EDICT dictionary editor
eEdit::eEdit(const TQString &_filename, TQWidget *parent, const char *name) eEdit::eEdit(const TQString &_filename, TQWidget *parent, const char *name)
: KMainWindow(parent, name) : TDEMainWindow(parent, name)
, filename(_filename) , filename(_filename)
{ {
List = new KListView(this); List = new TDEListView(this);
setCentralWidget(List); setCentralWidget(List);
List->addColumn(i18n("Kanji")); List->addColumn(i18n("Kanji"));
@ -318,9 +318,9 @@ eEdit::eEdit(const TQString &_filename, TQWidget *parent, const char *name)
List->setDragEnabled(true); List->setDragEnabled(true);
saveAct = KStdAction::save(TQT_TQOBJECT(this), TQT_SLOT(save()), actionCollection()); saveAct = KStdAction::save(TQT_TQOBJECT(this), TQT_SLOT(save()), actionCollection());
removeAct = new KAction(i18n("&Delete"), "edit_remove", CTRL + Key_X, TQT_TQOBJECT(this), TQT_SLOT(del()), actionCollection(), "del"); removeAct = new TDEAction(i18n("&Delete"), "edit_remove", CTRL + Key_X, TQT_TQOBJECT(this), TQT_SLOT(del()), actionCollection(), "del");
(void) new KAction(i18n("&Disable Dictionary"), 0, TQT_TQOBJECT(this), TQT_SLOT(disable()), actionCollection(), "disable"); (void) new TDEAction(i18n("&Disable Dictionary"), 0, TQT_TQOBJECT(this), TQT_SLOT(disable()), actionCollection(), "disable");
addAct = new KAction(i18n("&Add"), "edit_add", CTRL + Key_A, TQT_TQOBJECT(this), TQT_SLOT(add()), actionCollection(), "add"); addAct = new TDEAction(i18n("&Add"), "edit_add", CTRL + Key_A, TQT_TQOBJECT(this), TQT_SLOT(add()), actionCollection(), "add");
(void) KStdAction::close(TQT_TQOBJECT(this), TQT_SLOT(close()), actionCollection()); (void) KStdAction::close(TQT_TQOBJECT(this), TQT_SLOT(close()), actionCollection());
createGUI("eeditui.rc"); createGUI("eeditui.rc");
@ -338,7 +338,7 @@ eEdit::~eEdit()
void eEdit::add() void eEdit::add()
{ {
if (List) if (List)
new KListViewItem(List); new TDEListViewItem(List);
} }
void eEdit::openFile(const TQString &file) void eEdit::openFile(const TQString &file)
@ -437,7 +437,7 @@ void eEdit::del()
// sorta taken from konqy // sorta taken from konqy
EditAction::EditAction(const TQString& text, int accel, const TQObject *receiver, const char *member, TQObject* parent, const char* name) EditAction::EditAction(const TQString& text, int accel, const TQObject *receiver, const char *member, TQObject* parent, const char* name)
: KAction(text, accel, parent, name) : TDEAction(text, accel, parent, name)
{ {
m_receiver = receiver; m_receiver = receiver;
m_member = member; m_member = member;
@ -449,12 +449,12 @@ EditAction::~EditAction()
int EditAction::plug( TQWidget *w, int index ) int EditAction::plug( TQWidget *w, int index )
{ {
// if ( !w->inherits( "KToolBar" ) ) // if ( !w->inherits( "TDEToolBar" ) )
// return -1; // return -1;
KToolBar *toolBar = (KToolBar *)w; TDEToolBar *toolBar = (TDEToolBar *)w;
int id = KAction::getToolButtonID(); int id = TDEAction::getToolButtonID();
KRomajiEdit *comboBox = new KRomajiEdit(toolBar, "search edit"); KRomajiEdit *comboBox = new KRomajiEdit(toolBar, "search edit");
toolBar->insertWidget( id, 70, comboBox, index ); toolBar->insertWidget( id, 70, comboBox, index );
@ -477,10 +477,10 @@ int EditAction::plug( TQWidget *w, int index )
void EditAction::unplug( TQWidget *w ) void EditAction::unplug( TQWidget *w )
{ {
// if ( !w->inherits( "KToolBar" ) ) // if ( !w->inherits( "TDEToolBar" ) )
// return; // return;
KToolBar *toolBar = (KToolBar *)w; TDEToolBar *toolBar = (TDEToolBar *)w;
int idx = findContainer( w ); int idx = findContainer( w );

@ -28,7 +28,7 @@
#include <kmainwindow.h> #include <kmainwindow.h>
#include <ktextbrowser.h> #include <ktextbrowser.h>
class KListView; class TDEListView;
class KStatusBar; class KStatusBar;
#include "dict.h" #include "dict.h"
@ -64,7 +64,7 @@ class KDE_EXPORT ResultView : public KTextBrowser
bool basicMode; bool basicMode;
}; };
class KDE_EXPORT eEdit : public KMainWindow class KDE_EXPORT eEdit : public TDEMainWindow
{ {
Q_OBJECT Q_OBJECT
@ -81,16 +81,16 @@ class KDE_EXPORT eEdit : public KMainWindow
void openFile(const TQString &); void openFile(const TQString &);
private: private:
KListView *List; TDEListView *List;
TQString filename; TQString filename;
KStatusBar *StatusBar; KStatusBar *StatusBar;
KAction *addAct; TDEAction *addAct;
KAction *removeAct; TDEAction *removeAct;
KAction *saveAct; TDEAction *saveAct;
bool isMod; bool isMod;
}; };
class KDE_EXPORT EditAction : public KAction class KDE_EXPORT EditAction : public TDEAction
{ {
Q_OBJECT Q_OBJECT

@ -33,7 +33,7 @@
#include "settings.h" #include "settings.h"
KLatin::KLatin(TQWidget* parent, const char *name) KLatin::KLatin(TQWidget* parent, const char *name)
: KMainWindow(parent, name) : TDEMainWindow(parent, name)
{ {
m_section = 0; m_section = 0;
@ -54,10 +54,10 @@ void KLatin::setupActions()
{ {
// Setup various menu actions // Setup various menu actions
KStdAction::preferences(TQT_TQOBJECT(this), TQT_SLOT(loadSettings()), actionCollection()); KStdAction::preferences(TQT_TQOBJECT(this), TQT_SLOT(loadSettings()), actionCollection());
m_loadVocab = new KAction(i18n("Load &Vocabulary"), 0, TQT_TQOBJECT(this), TQT_SLOT(loadVocab()), actionCollection(), "go_vocab"); m_loadVocab = new TDEAction(i18n("Load &Vocabulary"), 0, TQT_TQOBJECT(this), TQT_SLOT(loadVocab()), actionCollection(), "go_vocab");
m_loadGrammar = new KAction(i18n("Load &Grammar"), 0, TQT_TQOBJECT(this), TQT_SLOT(loadGrammar()), actionCollection(), "go_grammar"); m_loadGrammar = new TDEAction(i18n("Load &Grammar"), 0, TQT_TQOBJECT(this), TQT_SLOT(loadGrammar()), actionCollection(), "go_grammar");
m_loadVerbs = new KAction(i18n("Load V&erbs"), 0, TQT_TQOBJECT(this), TQT_SLOT(loadVerbs()), actionCollection(), "go_verbs"); m_loadVerbs = new TDEAction(i18n("Load V&erbs"), 0, TQT_TQOBJECT(this), TQT_SLOT(loadVerbs()), actionCollection(), "go_verbs");
m_loadRevision = new KAction(i18n("Load &Revision"), 0, TQT_TQOBJECT(this), TQT_SLOT(loadRevision()), actionCollection(), "go_revision"); m_loadRevision = new TDEAction(i18n("Load &Revision"), 0, TQT_TQOBJECT(this), TQT_SLOT(loadRevision()), actionCollection(), "go_revision");
KStdAction::quit(TQT_TQOBJECT(kapp), TQT_SLOT(quit()), actionCollection()); KStdAction::quit(TQT_TQOBJECT(kapp), TQT_SLOT(quit()), actionCollection());
} }

@ -33,7 +33,7 @@
#include "klatinsettings_vocabpage.h" #include "klatinsettings_vocabpage.h"
/** @short Main application class */ /** @short Main application class */
class KLatin : public KMainWindow class KLatin : public TDEMainWindow
{ {
Q_OBJECT Q_OBJECT
@ -68,10 +68,10 @@ private slots:
private: private:
KAction *m_loadVocab; TDEAction *m_loadVocab;
KAction *m_loadGrammar; TDEAction *m_loadGrammar;
KAction *m_loadVerbs; TDEAction *m_loadVerbs;
KAction *m_loadRevision; TDEAction *m_loadRevision;
KLatinChoose *klatinchoose; KLatinChoose *klatinchoose;
KLatinGrammar *klatingrammarsection; KLatinGrammar *klatingrammarsection;

@ -7,7 +7,7 @@ Buttons appear consequently in the 2 styles to allow menuBar and other style.
- better internationalization - better internationalization
- i18n() the KLettres on the splash-screen - i18n() the KLettres on the splash-screen
- suppress the sound with the splash-screen as it was too long - suppress the sound with the splash-screen as it was too long
- add menubar, toolbar and statusbar, configurable using KAction - add menubar, toolbar and statusbar, configurable using TDEAction
- settings allow to choose the language and the level from the menuBar and toolBar - settings allow to choose the language and the level from the menuBar and toolBar
- statusBar indicates level and language - statusBar indicates level and language
- suppressed the .ui file - suppressed the .ui file

@ -16,7 +16,7 @@
<property name="name"> <property name="name">
<cstring>unnamed</cstring> <cstring>unnamed</cstring>
</property> </property>
<widget class="KFontChooser" row="0" column="0"> <widget class="TDEFontChooser" row="0" column="0">
<property name="name"> <property name="name">
<cstring>kcfg_Font</cstring> <cstring>kcfg_Font</cstring>
</property> </property>

@ -54,11 +54,11 @@ const int ID_GROWNB = 101;
const int ID_MENUBARB = 102; const int ID_MENUBARB = 102;
KLettres::KLettres() KLettres::KLettres()
: KMainWindow( 0, "KLettres" ) : TDEMainWindow( 0, "KLettres" )
{ {
mNewStuff = 0; mNewStuff = 0;
m_view = new KLettresView(this); m_view = new KLettresView(this);
// tell the KMainWindow that this is indeed the main widget // tell the TDEMainWindow that this is indeed the main widget
setCentralWidget(m_view); setCentralWidget(m_view);
//Scan for existing languages -> m_languages //Scan for existing languages -> m_languages
findLanguages(); findLanguages();
@ -195,25 +195,25 @@ bool KLettres::loadLayout(TQDomDocument &layoutDocument)
void KLettres::setupActions() void KLettres::setupActions()
{ {
KAction *m_newAction = new KAction(i18n("New Sound"), "file_new", CTRL+Key_N, TQT_TQOBJECT(m_view), TQT_SLOT(game()), actionCollection(), "play_new"); TDEAction *m_newAction = new TDEAction(i18n("New Sound"), "file_new", CTRL+Key_N, TQT_TQOBJECT(m_view), TQT_SLOT(game()), actionCollection(), "play_new");
m_newAction->setToolTip(i18n("Play a new sound")); m_newAction->setToolTip(i18n("Play a new sound"));
m_newAction->setWhatsThis(i18n("You can play a new sound by clicking this button or using the File menu, New Sound.")); m_newAction->setWhatsThis(i18n("You can play a new sound by clicking this button or using the File menu, New Sound."));
new KAction( i18n("Get Alphabet in New Language..."), "knewstuff", 0, TQT_TQOBJECT(this), TQT_SLOT( slotDownloadNewStuff() ), actionCollection(), "downloadnewstuff" ); new TDEAction( i18n("Get Alphabet in New Language..."), "knewstuff", 0, TQT_TQOBJECT(this), TQT_SLOT( slotDownloadNewStuff() ), actionCollection(), "downloadnewstuff" );
KAction *m_playAgainAction = new KAction(i18n("Replay Sound"),"player_play", CTRL+Key_P, TQT_TQOBJECT(m_view), TQT_SLOT(slotPlayAgain()), actionCollection(), "play_again"); TDEAction *m_playAgainAction = new TDEAction(i18n("Replay Sound"),"player_play", CTRL+Key_P, TQT_TQOBJECT(m_view), TQT_SLOT(slotPlayAgain()), actionCollection(), "play_again");
m_playAgainAction->setToolTip(i18n("Play the same sound again")); m_playAgainAction->setToolTip(i18n("Play the same sound again"));
m_playAgainAction->setWhatsThis(i18n("You can replay the same sound again by clicking this button or using the File menu, Replay Sound.")); m_playAgainAction->setWhatsThis(i18n("You can replay the same sound again by clicking this button or using the File menu, Replay Sound."));
KStdAction::quit(TQT_TQOBJECT(kapp), TQT_SLOT(quit()), actionCollection()); KStdAction::quit(TQT_TQOBJECT(kapp), TQT_SLOT(quit()), actionCollection());
m_menubarAction = new KToggleAction(i18n("Show &Menubar"),"editclear", CTRL+Key_M, TQT_TQOBJECT(this), TQT_SLOT(slotMenubar()), actionCollection(), "menubar"); m_menubarAction = new TDEToggleAction(i18n("Show &Menubar"),"editclear", CTRL+Key_M, TQT_TQOBJECT(this), TQT_SLOT(slotMenubar()), actionCollection(), "menubar");
m_menubarAction->setCheckedState(i18n("Hide &Menubar")); m_menubarAction->setCheckedState(i18n("Hide &Menubar"));
m_menubarAction->setChecked(true); m_menubarAction->setChecked(true);
m_menubarAction->setWhatsThis(i18n("You can show or hide the menubar as you wish by clicking this button.")); m_menubarAction->setWhatsThis(i18n("You can show or hide the menubar as you wish by clicking this button."));
m_levelAction = new KSelectAction(i18n("L&evel"), KShortcut(), actionCollection(), "levels"); m_levelAction = new TDESelectAction(i18n("L&evel"), TDEShortcut(), actionCollection(), "levels");
m_levelAction->setToolTip(i18n("Select the level")); m_levelAction->setToolTip(i18n("Select the level"));
m_levelAction->setWhatsThis(i18n("You can select the level: level 1 displays a letter and you hear it; level 2 does not display the letter, you only hear it; level 3 displays a syllable and you hear it; level 4 does not display the syllable, you only hear it.")); m_levelAction->setWhatsThis(i18n("You can select the level: level 1 displays a letter and you hear it; level 2 does not display the letter, you only hear it; level 3 displays a syllable and you hear it; level 4 does not display the syllable, you only hear it."));
m_languageAction = new KSelectAction(i18n("&Language"), KShortcut(), actionCollection(), "languages"); m_languageAction = new TDESelectAction(i18n("&Language"), TDEShortcut(), actionCollection(), "languages");
m_languageAction->setItems(m_languageNames); m_languageAction->setItems(m_languageNames);
m_levelsNames.append(i18n( "Level 1" )); m_levelsNames.append(i18n( "Level 1" ));
@ -222,7 +222,7 @@ void KLettres::setupActions()
m_levelsNames.append(i18n( "Level 4" )); m_levelsNames.append(i18n( "Level 4" ));
m_levelAction->setItems(m_levelsNames); m_levelAction->setItems(m_levelsNames);
m_themeAction = new KSelectAction(i18n("Themes"), KShortcut(), actionCollection(), "looks"); m_themeAction = new TDESelectAction(i18n("Themes"), TDEShortcut(), actionCollection(), "looks");
m_themesNames.append(i18n("Classroom")); m_themesNames.append(i18n("Classroom"));
m_themesNames.append(i18n("Arctic")); m_themesNames.append(i18n("Arctic"));
m_themesNames.append(i18n("Desert")); m_themesNames.append(i18n("Desert"));
@ -230,9 +230,9 @@ void KLettres::setupActions()
m_themeAction->setToolTip(i18n("Select the theme")); m_themeAction->setToolTip(i18n("Select the theme"));
m_themeAction->setWhatsThis(i18n("Here you can change the theme for KLettres. A theme consists in the background picture and the font color for the letter displayed.")); m_themeAction->setWhatsThis(i18n("Here you can change the theme for KLettres. A theme consists in the background picture and the font color for the letter displayed."));
m_kidAction = new KToggleAction(i18n("Mode Kid"), "klettres_kids", CTRL+Key_K, TQT_TQOBJECT(this), TQT_SLOT(slotModeKid()), actionCollection(), "mode_kid"); m_kidAction = new TDEToggleAction(i18n("Mode Kid"), "klettres_kids", CTRL+Key_K, TQT_TQOBJECT(this), TQT_SLOT(slotModeKid()), actionCollection(), "mode_kid");
m_kidAction->setWhatsThis(i18n("If you are in the Grown-up mode, clicking on this button will set up the Kid mode. The Kid mode has no menubar and the font is bigger in the statusbar.")); m_kidAction->setWhatsThis(i18n("If you are in the Grown-up mode, clicking on this button will set up the Kid mode. The Kid mode has no menubar and the font is bigger in the statusbar."));
m_grownupAction = new KToggleAction(i18n("Mode Grown-up"), "klettres_grownup", CTRL+Key_G, TQT_TQOBJECT(this), TQT_SLOT(slotModeGrownup()), actionCollection(), "mode_grownup"); m_grownupAction = new TDEToggleAction(i18n("Mode Grown-up"), "klettres_grownup", CTRL+Key_G, TQT_TQOBJECT(this), TQT_SLOT(slotModeGrownup()), actionCollection(), "mode_grownup");
m_grownupAction->setWhatsThis(i18n("The Grown-up mode is the normal mode where you can see the menubar.")); m_grownupAction->setWhatsThis(i18n("The Grown-up mode is the normal mode where you can see the menubar."));
connect(m_levelAction, TQT_SIGNAL(activated(int)), this, TQT_SLOT(slotChangeLevel(int))); connect(m_levelAction, TQT_SIGNAL(activated(int)), this, TQT_SLOT(slotChangeLevel(int)));
@ -259,7 +259,7 @@ void KLettres::setupToolbars()
{ {
//toolbar for special characters //toolbar for special characters
m_secondToolbar = toolBar("secondToolbar"); m_secondToolbar = toolBar("secondToolbar");
m_secondToolbar->setBarPos(KToolBar::Bottom); m_secondToolbar->setBarPos(TDEToolBar::Bottom);
} }
void KLettres::optionsPreferences() void KLettres::optionsPreferences()
@ -482,7 +482,7 @@ void KLettres::loadLangToolBar()
void KLettres::slotPasteChar() void KLettres::slotPasteChar()
{ {
KToolBarButton *charBut = (KToolBarButton* ) sender(); TDEToolBarButton *charBut = (TDEToolBarButton* ) sender();
m_view->m_letterEdit->insert(allData[charBut->id()]); m_view->m_letterEdit->insert(allData[charBut->id()]);
} }

@ -32,10 +32,10 @@
#include "soundfactory.h" #include "soundfactory.h"
class TQLabel; class TQLabel;
class KToggleAction; class TDEToggleAction;
class KSelectAction; class TDESelectAction;
class KComboBox; class KComboBox;
class KToolBar; class TDEToolBar;
class KLNewStuff; class KLNewStuff;
/** /**
@ -43,7 +43,7 @@ class KLNewStuff;
* @author Anne-Marie Mahfouf <annemarie.mahfouf@free.fr> * @author Anne-Marie Mahfouf <annemarie.mahfouf@free.fr>
* @version 1.4 * @version 1.4
*/ */
class KLettres : public KMainWindow class KLettres : public TDEMainWindow
{ {
Q_OBJECT Q_OBJECT
@ -69,7 +69,7 @@ public:
///Number corresponding to the selected language: 0 is Czech, 1 is Danish, 2 is English (default), 3 is French, 4 is Dutch, 5 is Slovak ///Number corresponding to the selected language: 0 is Czech, 1 is Danish, 2 is English (default), 3 is French, 4 is Dutch, 5 is Slovak
//uint selectedLanguage; //uint selectedLanguage;
///Action that sets up the Language menu ///Action that sets up the Language menu
KSelectAction *m_languageAction; TDESelectAction *m_languageAction;
///Look for all languages available ///Look for all languages available
void findLanguages(); void findLanguages();
@ -81,15 +81,15 @@ protected:
///Call an instance of the KLettresView widget ///Call an instance of the KLettresView widget
KLettresView *m_view; KLettresView *m_view;
///Action that enables the ShowMenuBar item in the Settings menu ///Action that enables the ShowMenuBar item in the Settings menu
KToggleAction *m_menubarAction; TDEToggleAction *m_menubarAction;
///Action that sets up the Level menu ///Action that sets up the Level menu
KSelectAction *m_levelAction; TDESelectAction *m_levelAction;
///Action that sets up the Look menu ///Action that sets up the Look menu
KSelectAction *m_themeAction; TDESelectAction *m_themeAction;
///Action allow the Kid mode ///Action allow the Kid mode
KToggleAction *m_kidAction; TDEToggleAction *m_kidAction;
///Action allow the Grownup mode ///Action allow the Grownup mode
KToggleAction *m_grownupAction; TDEToggleAction *m_grownupAction;
///Label stating the language in the statusbar ///Label stating the language in the statusbar
TQLabel *m_langLabel; TQLabel *m_langLabel;
///Label stating the level in the statusbar ///Label stating the level in the statusbar
@ -98,10 +98,10 @@ protected:
TQStringList m_levelsNames; TQStringList m_levelsNames;
///Holds the looks ///Holds the looks
TQStringList m_themesNames; TQStringList m_themesNames;
///Create an instance of a KToolBar ///Create an instance of a TDEToolBar
KToolBar *m_mainToolbar; TDEToolBar *m_mainToolbar;
///Second toolbar with buttons of special characters per language ///Second toolbar with buttons of special characters per language
KToolBar *m_secondToolbar; TDEToolBar *m_secondToolbar;
///is false when menubar button is not shown ///is false when menubar button is not shown
bool menuBool; bool menuBool;
///Build the main window menus ///Build the main window menus

@ -108,7 +108,7 @@
<property name="name"> <property name="name">
<cstring>unnamed</cstring> <cstring>unnamed</cstring>
</property> </property>
<widget class="KListView" row="0" column="0" rowspan="9" colspan="1"> <widget class="TDEListView" row="0" column="0" rowspan="9" colspan="1">
<property name="name"> <property name="name">
<cstring>lb_fktliste</cstring> <cstring>lb_fktliste</cstring>
</property> </property>

@ -82,7 +82,7 @@ MainDlg::MainDlg(TQWidget *parentWidget, const char *, TQObject *parent, const c
} }
fdlg = 0; fdlg = 0;
coordsDialog = 0; coordsDialog = 0;
m_popupmenu = new KPopupMenu(parentWidget); m_popupmenu = new TDEPopupMenu(parentWidget);
view = new View( m_readonly, m_modified, m_popupmenu, parentWidget ); view = new View( m_readonly, m_modified, m_popupmenu, parentWidget );
connect( view, TQT_SIGNAL( setStatusBarText(const TQString &)), this, TQT_SLOT( setReadOnlyStatusBarText(const TQString &) ) ); connect( view, TQT_SIGNAL( setStatusBarText(const TQString &)), this, TQT_SLOT( setReadOnlyStatusBarText(const TQString &) ) );
setWidget( view ); setWidget( view );
@ -129,7 +129,7 @@ void MainDlg::setupActions()
KStdAction::saveAs( this, TQT_SLOT( slotSaveas() ), actionCollection() ); KStdAction::saveAs( this, TQT_SLOT( slotSaveas() ), actionCollection() );
connect( kapp, TQT_SIGNAL( lastWindowClosed() ), kapp, TQT_SLOT( quit() ) ); connect( kapp, TQT_SIGNAL( lastWindowClosed() ), kapp, TQT_SLOT( quit() ) );
KAction *prefs = KStdAction::preferences( this, TQT_SLOT( slotSettings() ), actionCollection()); TDEAction *prefs = KStdAction::preferences( this, TQT_SLOT( slotSettings() ), actionCollection());
prefs->setText( i18n( "Configure KmPlot..." ) ); prefs->setText( i18n( "Configure KmPlot..." ) );
KStdAction::keyBindings(this, TQT_SLOT(optionsConfigureKeys()), actionCollection()); KStdAction::keyBindings(this, TQT_SLOT(optionsConfigureKeys()), actionCollection());
KStdAction::configureToolbars(this, TQT_SLOT(optionsConfigureToolbars()), actionCollection()); KStdAction::configureToolbars(this, TQT_SLOT(optionsConfigureToolbars()), actionCollection());
@ -137,15 +137,15 @@ void MainDlg::setupActions()
// KmPlot specific actions // KmPlot specific actions
// file menu // file menu
( void ) new KAction( i18n( "E&xport..." ), 0, this, TQT_SLOT( slotExport() ), actionCollection(), "export"); ( void ) new TDEAction( i18n( "E&xport..." ), 0, this, TQT_SLOT( slotExport() ), actionCollection(), "export");
//zoom menu //zoom menu
m_mnuNoZoom = new KRadioAction(i18n("&No Zoom") ,"CTRL+0",TQT_TQOBJECT(view), TQT_SLOT( mnuNoZoom_clicked() ),actionCollection(),"no_zoom" ); m_mnuNoZoom = new TDERadioAction(i18n("&No Zoom") ,"CTRL+0",TQT_TQOBJECT(view), TQT_SLOT( mnuNoZoom_clicked() ),actionCollection(),"no_zoom" );
KRadioAction * mnuRectangular = new KRadioAction(i18n("Zoom &Rectangular"), "viewmagfit", "CTRL+1",TQT_TQOBJECT(view), TQT_SLOT( mnuRectangular_clicked() ),actionCollection(),"zoom_rectangular" ); TDERadioAction * mnuRectangular = new TDERadioAction(i18n("Zoom &Rectangular"), "viewmagfit", "CTRL+1",TQT_TQOBJECT(view), TQT_SLOT( mnuRectangular_clicked() ),actionCollection(),"zoom_rectangular" );
KRadioAction * mnuZoomIn = new KRadioAction(i18n("Zoom &In"), "viewmag+", "CTRL+2",TQT_TQOBJECT(view), TQT_SLOT( mnuZoomIn_clicked() ),actionCollection(),"zoom_in" ); TDERadioAction * mnuZoomIn = new TDERadioAction(i18n("Zoom &In"), "viewmag+", "CTRL+2",TQT_TQOBJECT(view), TQT_SLOT( mnuZoomIn_clicked() ),actionCollection(),"zoom_in" );
KRadioAction * mnuZoomOut = new KRadioAction(i18n("Zoom &Out"), "viewmag-", "CTRL+3",TQT_TQOBJECT(view), TQT_SLOT( mnuZoomOut_clicked() ),actionCollection(),"zoom_out" ); TDERadioAction * mnuZoomOut = new TDERadioAction(i18n("Zoom &Out"), "viewmag-", "CTRL+3",TQT_TQOBJECT(view), TQT_SLOT( mnuZoomOut_clicked() ),actionCollection(),"zoom_out" );
KRadioAction * mnuZoomCenter = new KRadioAction(i18n("&Center Point") ,"CTRL+4",TQT_TQOBJECT(view), TQT_SLOT( mnuCenter_clicked() ),actionCollection(),"zoom_center" ); TDERadioAction * mnuZoomCenter = new TDERadioAction(i18n("&Center Point") ,"CTRL+4",TQT_TQOBJECT(view), TQT_SLOT( mnuCenter_clicked() ),actionCollection(),"zoom_center" );
(void ) new KAction(i18n("&Fit Widget to Trigonometric Functions") ,0,TQT_TQOBJECT(view), TQT_SLOT( mnuTrig_clicked() ),actionCollection(),"zoom_trig" ); (void ) new TDEAction(i18n("&Fit Widget to Trigonometric Functions") ,0,TQT_TQOBJECT(view), TQT_SLOT( mnuTrig_clicked() ),actionCollection(),"zoom_trig" );
m_mnuNoZoom->setExclusiveGroup("zoom_modes"); m_mnuNoZoom->setExclusiveGroup("zoom_modes");
m_mnuNoZoom->setChecked(true); m_mnuNoZoom->setChecked(true);
mnuRectangular->setExclusiveGroup("zoom_modes"); mnuRectangular->setExclusiveGroup("zoom_modes");
@ -154,52 +154,52 @@ void MainDlg::setupActions()
mnuZoomCenter->setExclusiveGroup("zoom_modes"); mnuZoomCenter->setExclusiveGroup("zoom_modes");
// help menu // help menu
( void ) new KAction( i18n( "Predefined &Math Functions" ), "functionhelp", 0, this, TQT_SLOT( slotNames() ), actionCollection(), "names" ); ( void ) new TDEAction( i18n( "Predefined &Math Functions" ), "functionhelp", 0, this, TQT_SLOT( slotNames() ), actionCollection(), "names" );
// edit menu // edit menu
( void ) new KAction( i18n( "&Colors..." ), "colorize.png", 0, this, TQT_SLOT( editColors() ), actionCollection(), "editcolors" ); ( void ) new TDEAction( i18n( "&Colors..." ), "colorize.png", 0, this, TQT_SLOT( editColors() ), actionCollection(), "editcolors" );
( void ) new KAction( i18n( "&Coordinate System..." ), "coords.png", 0, this, TQT_SLOT( editAxes() ), actionCollection(), "editaxes" ); ( void ) new TDEAction( i18n( "&Coordinate System..." ), "coords.png", 0, this, TQT_SLOT( editAxes() ), actionCollection(), "editaxes" );
// ( void ) new KAction( i18n( "&Grid..." ), "coords.png", 0, this, TQT_SLOT( editGrid() ), actionCollection(), "editgrid" ); // ( void ) new TDEAction( i18n( "&Grid..." ), "coords.png", 0, this, TQT_SLOT( editGrid() ), actionCollection(), "editgrid" );
( void ) new KAction( i18n( "&Scaling..." ), "scaling", 0, this, TQT_SLOT( editScaling() ), actionCollection(), "editscaling" ); ( void ) new TDEAction( i18n( "&Scaling..." ), "scaling", 0, this, TQT_SLOT( editScaling() ), actionCollection(), "editscaling" );
( void ) new KAction( i18n( "&Fonts..." ), "fonts", 0, this, TQT_SLOT( editFonts() ), actionCollection(), "editfonts" ); ( void ) new TDEAction( i18n( "&Fonts..." ), "fonts", 0, this, TQT_SLOT( editFonts() ), actionCollection(), "editfonts" );
( void ) new KAction( i18n( "Coordinate System I" ), "ksys1.png", 0, this, TQT_SLOT( slotCoord1() ), actionCollection(), "coord_i" ); ( void ) new TDEAction( i18n( "Coordinate System I" ), "ksys1.png", 0, this, TQT_SLOT( slotCoord1() ), actionCollection(), "coord_i" );
( void ) new KAction( i18n( "Coordinate System II" ), "ksys2.png", 0, this, TQT_SLOT( slotCoord2() ), actionCollection(), "coord_ii" ); ( void ) new TDEAction( i18n( "Coordinate System II" ), "ksys2.png", 0, this, TQT_SLOT( slotCoord2() ), actionCollection(), "coord_ii" );
( void ) new KAction( i18n( "Coordinate System III" ), "ksys3.png", 0, this, TQT_SLOT( slotCoord3() ), actionCollection(), "coord_iii" ); ( void ) new TDEAction( i18n( "Coordinate System III" ), "ksys3.png", 0, this, TQT_SLOT( slotCoord3() ), actionCollection(), "coord_iii" );
// plot menu // plot menu
( void ) new KAction( i18n( "&New Function Plot..." ), "newfunction", 0, this, TQT_SLOT( newFunction() ), actionCollection(), "newfunction" ); ( void ) new TDEAction( i18n( "&New Function Plot..." ), "newfunction", 0, this, TQT_SLOT( newFunction() ), actionCollection(), "newfunction" );
( void ) new KAction( i18n( "New Parametric Plot..." ), "newparametric", 0, this, TQT_SLOT( newParametric() ), actionCollection(), "newparametric" ); ( void ) new TDEAction( i18n( "New Parametric Plot..." ), "newparametric", 0, this, TQT_SLOT( newParametric() ), actionCollection(), "newparametric" );
( void ) new KAction( i18n( "New Polar Plot..." ), "newpolar", 0, this, TQT_SLOT( newPolar() ), actionCollection(), "newpolar" ); ( void ) new TDEAction( i18n( "New Polar Plot..." ), "newpolar", 0, this, TQT_SLOT( newPolar() ), actionCollection(), "newpolar" );
( void ) new KAction( i18n( "Edit Plots..." ), "editplots", 0, this, TQT_SLOT( slotEditPlots() ), actionCollection(), "editplots" ); ( void ) new TDEAction( i18n( "Edit Plots..." ), "editplots", 0, this, TQT_SLOT( slotEditPlots() ), actionCollection(), "editplots" );
// tools menu // tools menu
KAction *mnuYValue = new KAction( i18n( "&Get y-Value..." ), 0, this, TQT_SLOT( getYValue() ), actionCollection(), "yvalue" ); TDEAction *mnuYValue = new TDEAction( i18n( "&Get y-Value..." ), 0, this, TQT_SLOT( getYValue() ), actionCollection(), "yvalue" );
KAction *mnuMinValue = new KAction( i18n( "&Search for Minimum Value..." ), "minimum", 0, this, TQT_SLOT( findMinimumValue() ), actionCollection(), "minimumvalue" ); TDEAction *mnuMinValue = new TDEAction( i18n( "&Search for Minimum Value..." ), "minimum", 0, this, TQT_SLOT( findMinimumValue() ), actionCollection(), "minimumvalue" );
KAction *mnuMaxValue = new KAction( i18n( "&Search for Maximum Value..." ), "maximum", 0, this, TQT_SLOT( findMaximumValue() ), actionCollection(), "maximumvalue" ); TDEAction *mnuMaxValue = new TDEAction( i18n( "&Search for Maximum Value..." ), "maximum", 0, this, TQT_SLOT( findMaximumValue() ), actionCollection(), "maximumvalue" );
KAction *mnuArea = new KAction( i18n( "&Calculate Integral" ), 0, this, TQT_SLOT( graphArea() ), actionCollection(), "grapharea" ); TDEAction *mnuArea = new TDEAction( i18n( "&Calculate Integral" ), 0, this, TQT_SLOT( graphArea() ), actionCollection(), "grapharea" );
connect( m_quickEdit, TQT_SIGNAL( returnPressed( const TQString& ) ), this, TQT_SLOT( slotQuickEdit( const TQString& ) ) ); connect( m_quickEdit, TQT_SIGNAL( returnPressed( const TQString& ) ), this, TQT_SLOT( slotQuickEdit( const TQString& ) ) );
KWidgetAction* quickEditAction = new KWidgetAction( m_quickEdit, i18n( "Quick Edit" ), 0, this, 0, actionCollection(), "quickedit" ); KWidgetAction* quickEditAction = new KWidgetAction( m_quickEdit, i18n( "Quick Edit" ), 0, this, 0, actionCollection(), "quickedit" );
quickEditAction->setWhatsThis( i18n( "Enter a simple function equation here.\n" quickEditAction->setWhatsThis( i18n( "Enter a simple function equation here.\n"
"For instance: f(x)=x^2\nFor more options use Functions->Edit Plots... menu." ) ); "For instance: f(x)=x^2\nFor more options use Functions->Edit Plots... menu." ) );
view->mnuSliders[0] = new KToggleAction( i18n( "Show Slider 1" ), 0, this, TQT_SLOT( toggleShowSlider0() ), actionCollection(), TQString( "options_configure_show_slider_0" ).latin1() ); view->mnuSliders[0] = new TDEToggleAction( i18n( "Show Slider 1" ), 0, this, TQT_SLOT( toggleShowSlider0() ), actionCollection(), TQString( "options_configure_show_slider_0" ).latin1() );
view->mnuSliders[1] = new KToggleAction( i18n( "Show Slider 2" ), 0, this, TQT_SLOT( toggleShowSlider1() ), actionCollection(), TQString( "options_configure_show_slider_1" ).latin1() ); view->mnuSliders[1] = new TDEToggleAction( i18n( "Show Slider 2" ), 0, this, TQT_SLOT( toggleShowSlider1() ), actionCollection(), TQString( "options_configure_show_slider_1" ).latin1() );
view->mnuSliders[2] = new KToggleAction( i18n( "Show Slider 3" ), 0, this, TQT_SLOT( toggleShowSlider2() ), actionCollection(), TQString( "options_configure_show_slider_2" ).latin1() ); view->mnuSliders[2] = new TDEToggleAction( i18n( "Show Slider 3" ), 0, this, TQT_SLOT( toggleShowSlider2() ), actionCollection(), TQString( "options_configure_show_slider_2" ).latin1() );
view->mnuSliders[3] = new KToggleAction( i18n( "Show Slider 4" ), 0, this, TQT_SLOT( toggleShowSlider3() ), actionCollection(), TQString( "options_configure_show_slider_3" ).latin1() ); view->mnuSliders[3] = new TDEToggleAction( i18n( "Show Slider 4" ), 0, this, TQT_SLOT( toggleShowSlider3() ), actionCollection(), TQString( "options_configure_show_slider_3" ).latin1() );
// Popup menu // Popup menu
KAction *mnuHide = new KAction(i18n("&Hide") ,0,TQT_TQOBJECT(view), TQT_SLOT( mnuHide_clicked() ),actionCollection(),"mnuhide" ); TDEAction *mnuHide = new TDEAction(i18n("&Hide") ,0,TQT_TQOBJECT(view), TQT_SLOT( mnuHide_clicked() ),actionCollection(),"mnuhide" );
mnuHide->plug(m_popupmenu); mnuHide->plug(m_popupmenu);
KAction *mnuRemove = new KAction(i18n("&Remove"),"editdelete", 0,TQT_TQOBJECT(view), TQT_SLOT( mnuRemove_clicked() ),actionCollection(),"mnuremove" ); TDEAction *mnuRemove = new TDEAction(i18n("&Remove"),"editdelete", 0,TQT_TQOBJECT(view), TQT_SLOT( mnuRemove_clicked() ),actionCollection(),"mnuremove" );
mnuRemove->plug(m_popupmenu); mnuRemove->plug(m_popupmenu);
KAction *mnuEdit = new KAction(i18n("&Edit"),"editplots", 0,TQT_TQOBJECT(view), TQT_SLOT( mnuEdit_clicked() ),actionCollection(),"mnuedit" ); TDEAction *mnuEdit = new TDEAction(i18n("&Edit"),"editplots", 0,TQT_TQOBJECT(view), TQT_SLOT( mnuEdit_clicked() ),actionCollection(),"mnuedit" );
mnuEdit->plug(m_popupmenu); mnuEdit->plug(m_popupmenu);
m_popupmenu->insertSeparator(); m_popupmenu->insertSeparator();
KAction *mnuCopy = new KAction(i18n("&Copy"), 0,TQT_TQOBJECT(view), TQT_SLOT( mnuCopy_clicked() ),actionCollection(),"mnucopy" ); TDEAction *mnuCopy = new TDEAction(i18n("&Copy"), 0,TQT_TQOBJECT(view), TQT_SLOT( mnuCopy_clicked() ),actionCollection(),"mnucopy" );
mnuCopy->plug(m_popupmenu); mnuCopy->plug(m_popupmenu);
KAction *mnuMove = new KAction(i18n("&Move"), 0,TQT_TQOBJECT(view), TQT_SLOT( mnuMove_clicked() ),actionCollection(),"mnumove" ); TDEAction *mnuMove = new TDEAction(i18n("&Move"), 0,TQT_TQOBJECT(view), TQT_SLOT( mnuMove_clicked() ),actionCollection(),"mnumove" );
mnuMove->plug(m_popupmenu); mnuMove->plug(m_popupmenu);
m_popupmenu->insertSeparator(); m_popupmenu->insertSeparator();
mnuYValue->plug(m_popupmenu); mnuYValue->plug(m_popupmenu);

@ -52,13 +52,13 @@
class TDEConfigDialog; class TDEConfigDialog;
class KLineEdit; class KLineEdit;
class KRecentFilesAction; class TDERecentFilesAction;
class SettingsPageColor; class SettingsPageColor;
class SettingsPageFonts; class SettingsPageFonts;
class SettingsPagePrecision; class SettingsPagePrecision;
class SettingsPageScaling; class SettingsPageScaling;
class KConstantEditor; class KConstantEditor;
class KToggleFullScreenAction; class TDEToggleFullScreenAction;
class BrowserExtension; class BrowserExtension;
@ -160,10 +160,10 @@ private:
/// Cached dialog to edit all functions /// Cached dialog to edit all functions
FktDlg *fdlg; FktDlg *fdlg;
/// Central widget of the KMainWindow instance. tralala /// Central widget of the TDEMainWindow instance. tralala
View *view; View *view;
///The Recent Files action ///The Recent Files action
KRecentFilesAction * m_recentFiles; TDERecentFilesAction * m_recentFiles;
/// true == modifications not saved /// true == modifications not saved
bool m_modified; bool m_modified;
///An instance of the application config file ///An instance of the application config file
@ -180,7 +180,7 @@ private:
/// A dialog used by many tools-menu-items /// A dialog used by many tools-menu-items
KMinMax *minmaxdlg; KMinMax *minmaxdlg;
/// the popup menu shown when cling with the right mouse button on a graph in the graph widget /// the popup menu shown when cling with the right mouse button on a graph in the graph widget
KPopupMenu *m_popupmenu; TDEPopupMenu *m_popupmenu;
/// Loads and saves the user's file. /// Loads and saves the user's file.
KmPlotIO *kmplotio; KmPlotIO *kmplotio;
/// Set to true if the application is readonly /// Set to true if the application is readonly
@ -191,7 +191,7 @@ private:
KURL m_currentfile; KURL m_currentfile;
/// The axes config dialogs /// The axes config dialogs
CoordsConfigDialog* coordsDialog; CoordsConfigDialog* coordsDialog;
KRadioAction * m_mnuNoZoom; TDERadioAction * m_mnuNoZoom;
protected slots: protected slots:
/** /**

@ -56,7 +56,7 @@ double View::xmin = 0;
double View::xmax = 0; double View::xmax = 0;
View::View(bool const r, bool &mo, KPopupMenu *p, TQWidget* parent, const char* name ) : DCOPObject("View"), TQWidget( parent, name , WStaticContents ), buffer( width(), height() ), m_popupmenu(p), m_modified(mo), m_readonly(r), m_dcop_client(TDEApplication::kApplication()->dcopClient()) View::View(bool const r, bool &mo, TDEPopupMenu *p, TQWidget* parent, const char* name ) : DCOPObject("View"), TQWidget( parent, name , WStaticContents ), buffer( width(), height() ), m_popupmenu(p), m_modified(mo), m_readonly(r), m_dcop_client(TDEApplication::kApplication()->dcopClient())
{ {
csmode = csparam = -1; csmode = csparam = -1;
cstype = 0; cstype = 0;

@ -70,7 +70,7 @@ class View : public TQWidget, virtual public ViewIface
public: public:
/// Contructor sets up the parser, too. /// Contructor sets up the parser, too.
View(bool, bool &, KPopupMenu *, TQWidget* parent=NULL, const char* name=NULL ); View(bool, bool &, TDEPopupMenu *, TQWidget* parent=NULL, const char* name=NULL );
void setMinMaxDlg(KMinMax *); void setMinMaxDlg(KMinMax *);
virtual ~View(); virtual ~View();
@ -112,7 +112,7 @@ public:
/// Slider controlling parameter values /// Slider controlling parameter values
KSliderWindow* sliders[ SLIDER_COUNT ]; KSliderWindow* sliders[ SLIDER_COUNT ];
/// Menu actions for the sliders /// Menu actions for the sliders
KToggleAction *mnuSliders[ SLIDER_COUNT ]; TDEToggleAction *mnuSliders[ SLIDER_COUNT ];
void updateSliders(); /// show only needed sliders void updateSliders(); /// show only needed sliders
public slots: public slots:
@ -250,7 +250,7 @@ private:
///buffer the current window so all functions don't need to be re-drawed ///buffer the current window so all functions don't need to be re-drawed
TQPixmap buffer; TQPixmap buffer;
/// the popup menu /// the popup menu
KPopupMenu *m_popupmenu; TDEPopupMenu *m_popupmenu;
/// is set to true if an integral is calculated /// is set to true if an integral is calculated
bool isDrawing; bool isDrawing;
///status of the popup menu ///status of the popup menu

@ -37,7 +37,7 @@
#include "kmplotIface.h" #include "kmplotIface.h"
#include "kmplotprogress.h" #include "kmplotprogress.h"
class KToggleAction; class TDEToggleAction;
/** /**
* This is the application "Shell". It has a menubar, toolbar, and * This is the application "Shell". It has a menubar, toolbar, and
@ -116,7 +116,7 @@ private:
private: private:
KParts::ReadOnlyPart *m_part; KParts::ReadOnlyPart *m_part;
/// The fullscreen action to be plugged/unplegged to the toolbar /// The fullscreen action to be plugged/unplegged to the toolbar
KToggleFullScreenAction* m_fullScreen; TDEToggleFullScreenAction* m_fullScreen;
KmPlotProgress *m_progressbar; KmPlotProgress *m_progressbar;
}; };

@ -60,10 +60,10 @@ KSliderWindow::KSliderWindow(TQWidget* parent, int num ) :
slider->installEventFilter(this); slider->installEventFilter(this);
installEventFilter(this); installEventFilter(this);
m_popupmenu = new KPopupMenu(this); m_popupmenu = new TDEPopupMenu(this);
KAction *mnuMinValue = new KAction(i18n("&Change Minimum Value") ,0,TQT_TQOBJECT(this), TQT_SLOT( mnuMinValue_clicked() ),0); TDEAction *mnuMinValue = new TDEAction(i18n("&Change Minimum Value") ,0,TQT_TQOBJECT(this), TQT_SLOT( mnuMinValue_clicked() ),0);
mnuMinValue->plug(m_popupmenu); mnuMinValue->plug(m_popupmenu);
KAction *mnuMaxValue = new KAction(i18n("&Change Maximum Value") ,0,TQT_TQOBJECT(this), TQT_SLOT( mnuMaxValue_clicked() ),0 ); TDEAction *mnuMaxValue = new TDEAction(i18n("&Change Maximum Value") ,0,TQT_TQOBJECT(this), TQT_SLOT( mnuMaxValue_clicked() ),0 );
mnuMaxValue->plug(m_popupmenu); mnuMaxValue->plug(m_popupmenu);
} }

@ -52,7 +52,7 @@ class KSliderWindow : public SliderWindow
private: private:
bool eventFilter( TQObject *obj, TQEvent *ev ); bool eventFilter( TQObject *obj, TQEvent *ev );
void closeEvent( TQCloseEvent * ); void closeEvent( TQCloseEvent * );
KPopupMenu *m_popupmenu; TDEPopupMenu *m_popupmenu;
int m_num; int m_num;
}; };

@ -84,7 +84,7 @@
<string>Click this button to add a new constant.</string> <string>Click this button to add a new constant.</string>
</property> </property>
</widget> </widget>
<widget class="KListView" row="0" column="0" rowspan="5" colspan="1"> <widget class="TDEListView" row="0" column="0" rowspan="5" colspan="1">
<column> <column>
<property name="text"> <property name="text">
<string>Variable</string> <string>Variable</string>

@ -95,7 +95,7 @@
<property name="name"> <property name="name">
<cstring>unnamed</cstring> <cstring>unnamed</cstring>
</property> </property>
<widget class="KListBox" row="0" column="0"> <widget class="TDEListBox" row="0" column="0">
<property name="name"> <property name="name">
<cstring>list</cstring> <cstring>list</cstring>
</property> </property>

@ -53,7 +53,7 @@
<string>Click here to edit the value of the selected constant. Its name cannot be changed.</string> <string>Click here to edit the value of the selected constant. Its name cannot be changed.</string>
</property> </property>
</widget> </widget>
<widget class="KListBox" row="0" column="0" rowspan="8" colspan="1"> <widget class="TDEListBox" row="0" column="0" rowspan="8" colspan="1">
<property name="name"> <property name="name">
<cstring>list</cstring> <cstring>list</cstring>
</property> </property>

@ -82,7 +82,7 @@
<cstring>kcfg_AxesFont</cstring> <cstring>kcfg_AxesFont</cstring>
</property> </property>
</widget> </widget>
<widget class="KFontCombo" row="0" column="1" rowspan="1" colspan="2"> <widget class="TDEFontCombo" row="0" column="1" rowspan="1" colspan="2">
<property name="name"> <property name="name">
<cstring>kcfg_AxesFont</cstring> <cstring>kcfg_AxesFont</cstring>
</property> </property>
@ -104,7 +104,7 @@
<string>Here you set the font size for the axis</string> <string>Here you set the font size for the axis</string>
</property> </property>
</widget> </widget>
<widget class="KFontCombo" row="2" column="1" rowspan="1" colspan="2"> <widget class="TDEFontCombo" row="2" column="1" rowspan="1" colspan="2">
<property name="name"> <property name="name">
<cstring>kcfg_HeaderTableFont</cstring> <cstring>kcfg_HeaderTableFont</cstring>
</property> </property>

@ -41,7 +41,7 @@
<string>To import an existing data file, enter its filename here. You will then describe the contents of the file below. You can leave the filename blank to construct a catalog file with a valid header, but no data.</string> <string>To import an existing data file, enter its filename here. You will then describe the contents of the file below. You can leave the filename blank to construct a catalog file with a valid header, but no data.</string>
</property> </property>
</widget> </widget>
<widget class="KListBox"> <widget class="TDEListBox">
<property name="name"> <property name="name">
<cstring>DataFileBox</cstring> <cstring>DataFileBox</cstring>
</property> </property>

@ -19,7 +19,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>Choose Online Database</string> <string>Choose Online Database</string>

@ -43,7 +43,7 @@
<string>&lt;p align="center"&gt;Information Links&lt;/p&gt;</string> <string>&lt;p align="center"&gt;Information Links&lt;/p&gt;</string>
</property> </property>
</widget> </widget>
<widget class="KListBox"> <widget class="TDEListBox">
<property name="name"> <property name="name">
<cstring>InfoList</cstring> <cstring>InfoList</cstring>
</property> </property>
@ -97,7 +97,7 @@
<string>&lt;p align="center"&gt;Image Links&lt;/p&gt;</string> <string>&lt;p align="center"&gt;Image Links&lt;/p&gt;</string>
</property> </property>
</widget> </widget>
<widget class="KListBox"> <widget class="TDEListBox">
<property name="name"> <property name="name">
<cstring>ImagesList</cstring> <cstring>ImagesList</cstring>
</property> </property>

@ -37,7 +37,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>Device</string> <string>Device</string>
@ -238,7 +238,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>Status</string> <string>Status</string>

@ -22,7 +22,7 @@
#include "draglistbox.h" #include "draglistbox.h"
DragListBox::DragListBox( TQWidget *parent, const char *name, WFlags f ) DragListBox::DragListBox( TQWidget *parent, const char *name, WFlags f )
: KListBox( parent, name, f ) { : TDEListBox( parent, name, f ) {
setAcceptDrops( TRUE ); setAcceptDrops( TRUE );
dragging = FALSE; dragging = FALSE;

@ -24,13 +24,13 @@ class TQDragEnterEvent;
class TQDragDropEvent; class TQDragDropEvent;
/**@class DragListBox /**@class DragListBox
*@short Extension of KListBox that allows Drag-and-Drop *@short Extension of TDEListBox that allows Drag-and-Drop
*with other DragListBoxes *with other DragListBoxes
*@author Jason Harris *@author Jason Harris
*@version 1.0 *@version 1.0
*/ */
class DragListBox : public KListBox { class DragListBox : public TDEListBox {
Q_OBJECT Q_OBJECT
public: public:

@ -22,7 +22,7 @@
<property name="name"> <property name="name">
<cstring>unnamed</cstring> <cstring>unnamed</cstring>
</property> </property>
<widget class="KListView" row="0" column="0" rowspan="1" colspan="5"> <widget class="TDEListView" row="0" column="0" rowspan="1" colspan="5">
<column> <column>
<property name="text"> <property name="text">
<string>Card</string> <string>Card</string>

@ -92,7 +92,7 @@ extern int fits_ieee64_motorola;
val = *(FITS_BITPIXM64 *)uc; } else val = *(FITS_BITPIXM64 *)p; } val = *(FITS_BITPIXM64 *)uc; } else val = *(FITS_BITPIXM64 *)p; }
FITSViewer::FITSViewer (const KURL *url, TQWidget *parent, const char *name) FITSViewer::FITSViewer (const KURL *url, TQWidget *parent, const char *name)
: KMainWindow (parent, name) : TDEMainWindow (parent, name)
{ {
image = NULL; image = NULL;
currentURL = *url; currentURL = *url;
@ -131,27 +131,27 @@ FITSViewer::FITSViewer (const KURL *url, TQWidget *parent, const char *name)
if (KSUtils::openDataFile( tempFile, "imgreduction.png" ) ) if (KSUtils::openDataFile( tempFile, "imgreduction.png" ) )
{ {
new KAction( i18n("Image Reduction"), tempFile.name(), KShortcut( "Ctrl+R" ), TQT_TQOBJECT(this), TQT_SLOT( imageReduction()), actionCollection(), "image_reduce"); new TDEAction( i18n("Image Reduction"), tempFile.name(), TDEShortcut( "Ctrl+R" ), TQT_TQOBJECT(this), TQT_SLOT( imageReduction()), actionCollection(), "image_reduce");
tempFile.close(); tempFile.close();
} }
else else
new KAction( i18n("Image Reduction"), "blend", KShortcut( "Ctrl+R" ), TQT_TQOBJECT(this), TQT_SLOT( imageReduction()), actionCollection(), "image_reduce"); new TDEAction( i18n("Image Reduction"), "blend", TDEShortcut( "Ctrl+R" ), TQT_TQOBJECT(this), TQT_SLOT( imageReduction()), actionCollection(), "image_reduce");
/*if (KSUtils::openDataFile( tempFile, "bricon.png" ) ) /*if (KSUtils::openDataFile( tempFile, "bricon.png" ) )
{ {
new KAction( i18n("Brightness/Contrast"), tempFile.name(), KShortcut( "Ctrl+T" ), TQT_TQOBJECT(this), TQT_SLOT( BrightContrastDlg()), actionCollection(), "image_brightness_contrast"); new TDEAction( i18n("Brightness/Contrast"), tempFile.name(), TDEShortcut( "Ctrl+T" ), TQT_TQOBJECT(this), TQT_SLOT( BrightContrastDlg()), actionCollection(), "image_brightness_contrast");
tempFile.close(); tempFile.close();
} }
else*/ else*/
new KAction( i18n("Brightness/Contrast"), "contrast+", KShortcut( "Ctrl+T" ), TQT_TQOBJECT(this), TQT_SLOT( BrightContrastDlg()), actionCollection(), "image_brightness_contrast"); new TDEAction( i18n("Brightness/Contrast"), "contrast+", TDEShortcut( "Ctrl+T" ), TQT_TQOBJECT(this), TQT_SLOT( BrightContrastDlg()), actionCollection(), "image_brightness_contrast");
if (KSUtils::openDataFile( tempFile, "histogram.png" ) ) if (KSUtils::openDataFile( tempFile, "histogram.png" ) )
{ {
new KAction ( i18n("Histogram"), tempFile.name(), KShortcut("Ctrl+H"), TQT_TQOBJECT(this), TQT_SLOT (imageHistogram()), actionCollection(), "image_histogram"); new TDEAction ( i18n("Histogram"), tempFile.name(), TDEShortcut("Ctrl+H"), TQT_TQOBJECT(this), TQT_SLOT (imageHistogram()), actionCollection(), "image_histogram");
tempFile.close(); tempFile.close();
} }
else else
new KAction ( i18n("Histogram"), "wizard", KShortcut("Ctrl+H"), TQT_TQOBJECT(this), TQT_SLOT (imageHistogram()), actionCollection(), "image_histogram"); new TDEAction ( i18n("Histogram"), "wizard", TDEShortcut("Ctrl+H"), TQT_TQOBJECT(this), TQT_SLOT (imageHistogram()), actionCollection(), "image_histogram");
KStdAction::open(TQT_TQOBJECT(this), TQT_SLOT(fileOpen()), actionCollection()); KStdAction::open(TQT_TQOBJECT(this), TQT_SLOT(fileOpen()), actionCollection());
KStdAction::save(TQT_TQOBJECT(this), TQT_SLOT(fileSave()), actionCollection()); KStdAction::save(TQT_TQOBJECT(this), TQT_SLOT(fileSave()), actionCollection());
@ -160,10 +160,10 @@ FITSViewer::FITSViewer (const KURL *url, TQWidget *parent, const char *name)
KStdAction::copy(TQT_TQOBJECT(this), TQT_SLOT(fitsCOPY()), actionCollection()); KStdAction::copy(TQT_TQOBJECT(this), TQT_SLOT(fitsCOPY()), actionCollection());
KStdAction::zoomIn(TQT_TQOBJECT(image), TQT_SLOT(fitsZoomIn()), actionCollection()); KStdAction::zoomIn(TQT_TQOBJECT(image), TQT_SLOT(fitsZoomIn()), actionCollection());
KStdAction::zoomOut(TQT_TQOBJECT(image), TQT_SLOT(fitsZoomOut()), actionCollection()); KStdAction::zoomOut(TQT_TQOBJECT(image), TQT_SLOT(fitsZoomOut()), actionCollection());
new KAction( i18n( "&Default Zoom" ), "viewmagfit.png", KShortcut( "Ctrl+D" ), new TDEAction( i18n( "&Default Zoom" ), "viewmagfit.png", TDEShortcut( "Ctrl+D" ),
TQT_TQOBJECT(image), TQT_SLOT(fitsZoomDefault()), actionCollection(), "zoom_default" ); TQT_TQOBJECT(image), TQT_SLOT(fitsZoomDefault()), actionCollection(), "zoom_default" );
new KAction( i18n( "Statistics"), "sum", 0, TQT_TQOBJECT(this), TQT_SLOT(fitsStatistics()), actionCollection(), "image_stats"); new TDEAction( i18n( "Statistics"), "sum", 0, TQT_TQOBJECT(this), TQT_SLOT(fitsStatistics()), actionCollection(), "image_stats");
new KAction( i18n( "FITS Header"), "frame_spreadsheet.png", 0, TQT_TQOBJECT(this), TQT_SLOT(fitsHeader()), actionCollection(), "fits_editor"); new TDEAction( i18n( "FITS Header"), "frame_spreadsheet.png", 0, TQT_TQOBJECT(this), TQT_SLOT(fitsHeader()), actionCollection(), "fits_editor");
/* Create GUI */ /* Create GUI */
createGUI("fitsviewer.rc"); createGUI("fitsviewer.rc");

@ -45,7 +45,7 @@ class TQScrollView;
class FITSImage; class FITSImage;
class FITSHistogram; class FITSHistogram;
class FITSViewer : public KMainWindow { class FITSViewer : public TDEMainWindow {
Q_OBJECT Q_OBJECT

@ -19,7 +19,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>FOVListBox</cstring> <cstring>FOVListBox</cstring>
</property> </property>

@ -30,16 +30,16 @@
#include <kapplication.h> #include <kapplication.h>
ImageViewer::ImageViewer (const KURL *url, const TQString &capText, TQWidget *parent, const char *name) ImageViewer::ImageViewer (const KURL *url, const TQString &capText, TQWidget *parent, const char *name)
: KMainWindow (parent, name), imageURL (*url), fileIsImage (false), : TDEMainWindow (parent, name), imageURL (*url), fileIsImage (false),
ctrl (false), key_s (false), key_q (false), downloadJob(0) ctrl (false), key_s (false), key_q (false), downloadJob(0)
{ {
// toolbar can dock only on top-position and can't be minimized // toolbar can dock only on top-position and can't be minimized
// JH: easier to just disable its mobility // JH: easier to just disable its mobility
toolBar()->setMovingEnabled( false ); toolBar()->setMovingEnabled( false );
KAction *action = new KAction (i18n ("Close Window"), "fileclose", CTRL+Key_Q, TQT_TQOBJECT(this), TQT_SLOT (close()), actionCollection()); TDEAction *action = new TDEAction (i18n ("Close Window"), "fileclose", CTRL+Key_Q, TQT_TQOBJECT(this), TQT_SLOT (close()), actionCollection());
action->plug (toolBar()); action->plug (toolBar());
action = new KAction (i18n ("Save Image"), "filesave", CTRL+Key_S, TQT_TQOBJECT(this), TQT_SLOT (saveFileToDisc()), actionCollection()); action = new TDEAction (i18n ("Save Image"), "filesave", CTRL+Key_S, TQT_TQOBJECT(this), TQT_SLOT (saveFileToDisc()), actionCollection());
action->plug (toolBar()); action->plug (toolBar());
statusBar()->insertItem( capText, 0, 1, true ); statusBar()->insertItem( capText, 0, 1, true );

@ -45,7 +45,7 @@
class KURL; class KURL;
class TQFile; class TQFile;
class ImageViewer : public KMainWindow { class ImageViewer : public TDEMainWindow {
Q_OBJECT Q_OBJECT
@ -70,7 +70,7 @@ class ImageViewer : public KMainWindow {
void closeEvent (TQCloseEvent *ev); void closeEvent (TQCloseEvent *ev);
/**Keyboard shortcuts for saving files and closing the window /**Keyboard shortcuts for saving files and closing the window
*@note (this should be deprecated; instead just assign KAccel *@note (this should be deprecated; instead just assign TDEAccel
*to the close/save buttons) *to the close/save buttons)
*/ */
void keyPressEvent (TQKeyEvent *ev); void keyPressEvent (TQKeyEvent *ev);

@ -31,7 +31,7 @@ class KLineEdit;
class KComboBox; class KComboBox;
class KDoubleSpinBox; class KDoubleSpinBox;
class KPushButton; class KPushButton;
class KPopupMenu; class TDEPopupMenu;
class TQTable; class TQTable;
class TQLabel; class TQLabel;

@ -69,7 +69,7 @@ INDIDriver::INDIDriver(TQWidget *parent) : devManager( parent )
localMode = icons->loadIcon( "network_local", KIcon::Small); localMode = icons->loadIcon( "network_local", KIcon::Small);
serverMode = icons->loadIcon( "network", KIcon::Small); serverMode = icons->loadIcon( "network", KIcon::Small);
LocalpopMenu = new KPopupMenu(localListView); LocalpopMenu = new TDEPopupMenu(localListView);
LocalpopMenu->insertItem( runningPix, i18n("Run Service") , 0); LocalpopMenu->insertItem( runningPix, i18n("Run Service") , 0);
LocalpopMenu->insertItem( stopPix, i18n("Stop Service"), 1); LocalpopMenu->insertItem( stopPix, i18n("Stop Service"), 1);
@ -79,7 +79,7 @@ INDIDriver::INDIDriver(TQWidget *parent) : devManager( parent )
disconnected = icons->loadIcon( "connect_no", KIcon::Small); disconnected = icons->loadIcon( "connect_no", KIcon::Small);
establishConnection = icons->loadIcon( "connect_creating", KIcon::Small); establishConnection = icons->loadIcon( "connect_creating", KIcon::Small);
ClientpopMenu = new KPopupMenu(clientListView); ClientpopMenu = new TDEPopupMenu(clientListView);
ClientpopMenu->insertItem( establishConnection, i18n("Connect") , 0); ClientpopMenu->insertItem( establishConnection, i18n("Connect") , 0);
ClientpopMenu->insertItem( disconnected, i18n("Disconnect"), 1); ClientpopMenu->insertItem( disconnected, i18n("Disconnect"), 1);
@ -353,7 +353,7 @@ void INDIDriver::updateMenuActions()
// We iterate over devices, we enable INDI Control Panel if we have any active device // We iterate over devices, we enable INDI Control Panel if we have any active device
// We enable capture image sequence if we have any imaging device // We enable capture image sequence if we have any imaging device
KAction *tmpAction; TDEAction *tmpAction;
INDIMenu *devMenu = ksw->getINDIMenu(); INDIMenu *devMenu = ksw->getINDIMenu();
bool activeDevice = false; bool activeDevice = false;
bool activeImaging = false; bool activeImaging = false;
@ -656,7 +656,7 @@ bool INDIDriver::buildDeviceGroup(XMLEle *root, char errmsg[])
groupType = KSTARS_GPS; groupType = KSTARS_GPS;
//KListViewItem *group = new KListViewItem(topItem, lastGroup); //TDEListViewItem *group = new TDEListViewItem(topItem, lastGroup);
TQListViewItem *group = new TQListViewItem(localListView, lastGroup); TQListViewItem *group = new TQListViewItem(localListView, lastGroup);
group->setText(0, groupName); group->setText(0, groupName);
lastGroup = group; lastGroup = group;

@ -27,8 +27,8 @@
class KStars; class KStars;
class KListView; class TDEListView;
class KPopupMenu; class TDEPopupMenu;
class TDEProcess; class TDEProcess;
struct INDIHostsInfo struct INDIHostsInfo
@ -87,7 +87,7 @@ class INDIDriver : public devManager
INDIDriver(TQWidget * parent = 0); INDIDriver(TQWidget * parent = 0);
~INDIDriver(); ~INDIDriver();
KListView* deviceContainer; TDEListView* deviceContainer;
bool readXMLDriver(); bool readXMLDriver();
@ -108,8 +108,8 @@ class INDIDriver : public devManager
TQPixmap localMode; TQPixmap localMode;
TQPixmap serverMode; TQPixmap serverMode;
KPopupMenu *ClientpopMenu; TDEPopupMenu *ClientpopMenu;
KPopupMenu *LocalpopMenu; TDEPopupMenu *LocalpopMenu;
int lastPort; int lastPort;

@ -18,7 +18,7 @@
class INDI_G; class INDI_G;
class INDIStdProperty; class INDIStdProperty;
class KPopupMenu; class TDEPopupMenu;
class KComboBox; class KComboBox;
class KLed; class KLed;
@ -43,7 +43,7 @@ class INDI_P : public TQObject
TQString label; /* property label */ TQString label; /* property label */
INDI_G *pg; /* parent group */ INDI_G *pg; /* parent group */
KPopupMenu *assosiatedPopup; /* assosiated popup menu, if any */ TDEPopupMenu *assosiatedPopup; /* assosiated popup menu, if any */
INDIStdProperty *indistd; /* Assosciated std routines class */ INDIStdProperty *indistd; /* Assosciated std routines class */
double timeout; /* timeout, seconds */ double timeout; /* timeout, seconds */
PState state; /* state light code */ PState state; /* state light code */

@ -345,7 +345,7 @@ void INDIStdDevice::handleBLOB(unsigned char *buffer, int bufferSize, TQString d
{ {
INDI_E *lp; INDI_E *lp;
INDI_P *imgProp; INDI_P *imgProp;
KAction *tmpAction; TDEAction *tmpAction;
INDIDriver *drivers = ksw->getINDIDriver(); INDIDriver *drivers = ksw->getINDIDriver();
TQFont buttonFont; TQFont buttonFont;

@ -33,7 +33,7 @@
#include "indiproperty.h" #include "indiproperty.h"
KSPopupMenu::KSPopupMenu( TQWidget *parent, const char *name ) KSPopupMenu::KSPopupMenu( TQWidget *parent, const char *name )
: KPopupMenu( parent, name ) : TDEPopupMenu( parent, name )
{ {
ksw = ( KStars* )parent; ksw = ( KStars* )parent;
} }
@ -154,7 +154,7 @@ bool KSPopupMenu::addINDI(void)
if (!dev->INDIStdSupport) if (!dev->INDIStdSupport)
continue; continue;
KPopupMenu *menuDevice = new KPopupMenu(); TDEPopupMenu *menuDevice = new TDEPopupMenu();
insertItem(dev->label, menuDevice); insertItem(dev->label, menuDevice);

@ -36,7 +36,7 @@ class StarObject;
class SkyObject; class SkyObject;
class TQLabel; class TQLabel;
class KSPopupMenu : public KPopupMenu class KSPopupMenu : public TDEPopupMenu
{ {
Q_OBJECT Q_OBJECT

@ -16,7 +16,7 @@
***************************************************************************/ ***************************************************************************/
//JH 11.06.2002: replaced infoPanel with infoBoxes //JH 11.06.2002: replaced infoPanel with infoBoxes
//JH 24.08.2001: reorganized infoPanel //JH 24.08.2001: reorganized infoPanel
//JH 25.08.2001: added toolbar, converted menu items to KAction objects //JH 25.08.2001: added toolbar, converted menu items to TDEAction objects
//JH 25.08.2001: main window now resizable, window size saved in config file //JH 25.08.2001: main window now resizable, window size saved in config file
@ -47,7 +47,7 @@
#include "indidriver.h" #include "indidriver.h"
KStars::KStars( bool doSplash, bool clockrun, const TQString &startdate ) : KStars::KStars( bool doSplash, bool clockrun, const TQString &startdate ) :
DCOPObject("KStarsInterface"), KMainWindow(), DCOPObject("KStarsInterface"), TDEMainWindow(),
skymap(0), centralWidget(0), topLayout(0), viewToolBar(0), TimeStep(0), skymap(0), centralWidget(0), topLayout(0), viewToolBar(0), TimeStep(0),
actCoordSys(0), colorActionMenu(0), fovActionMenu(0), actCoordSys(0), colorActionMenu(0), fovActionMenu(0),
AAVSODialog(0), findDialog(0), kns(0), AAVSODialog(0), findDialog(0), kns(0),
@ -163,23 +163,23 @@ void KStars::applyConfig() {
//Toggle actions //Toggle actions
if ( Options::useAltAz() ) ((ToggleAction*)actionCollection()->action("coordsys"))->turnOff(); if ( Options::useAltAz() ) ((ToggleAction*)actionCollection()->action("coordsys"))->turnOff();
((KToggleAction*)actionCollection()->action("show_time_box"))->setChecked( Options::showTimeBox() ); ((TDEToggleAction*)actionCollection()->action("show_time_box"))->setChecked( Options::showTimeBox() );
((KToggleAction*)actionCollection()->action("show_location_box"))->setChecked( Options::showGeoBox() ); ((TDEToggleAction*)actionCollection()->action("show_location_box"))->setChecked( Options::showGeoBox() );
((KToggleAction*)actionCollection()->action("show_focus_box"))->setChecked( Options::showFocusBox() ); ((TDEToggleAction*)actionCollection()->action("show_focus_box"))->setChecked( Options::showFocusBox() );
((KToggleAction*)actionCollection()->action("show_mainToolBar"))->setChecked( Options::showMainToolBar() ); ((TDEToggleAction*)actionCollection()->action("show_mainToolBar"))->setChecked( Options::showMainToolBar() );
((KToggleAction*)actionCollection()->action("show_viewToolBar"))->setChecked( Options::showViewToolBar() ); ((TDEToggleAction*)actionCollection()->action("show_viewToolBar"))->setChecked( Options::showViewToolBar() );
((KToggleAction*)actionCollection()->action("show_statusBar"))->setChecked( Options::showStatusBar() ); ((TDEToggleAction*)actionCollection()->action("show_statusBar"))->setChecked( Options::showStatusBar() );
((KToggleAction*)actionCollection()->action("show_sbAzAlt"))->setChecked( Options::showAltAzField() ); ((TDEToggleAction*)actionCollection()->action("show_sbAzAlt"))->setChecked( Options::showAltAzField() );
((KToggleAction*)actionCollection()->action("show_sbRADec"))->setChecked( Options::showRADecField() ); ((TDEToggleAction*)actionCollection()->action("show_sbRADec"))->setChecked( Options::showRADecField() );
((KToggleAction*)actionCollection()->action("show_stars"))->setChecked( Options::showStars() ); ((TDEToggleAction*)actionCollection()->action("show_stars"))->setChecked( Options::showStars() );
((KToggleAction*)actionCollection()->action("show_deepsky"))->setChecked( Options::showDeepSky() ); ((TDEToggleAction*)actionCollection()->action("show_deepsky"))->setChecked( Options::showDeepSky() );
((KToggleAction*)actionCollection()->action("show_planets"))->setChecked( Options::showPlanets() ); ((TDEToggleAction*)actionCollection()->action("show_planets"))->setChecked( Options::showPlanets() );
((KToggleAction*)actionCollection()->action("show_clines"))->setChecked( Options::showCLines() ); ((TDEToggleAction*)actionCollection()->action("show_clines"))->setChecked( Options::showCLines() );
((KToggleAction*)actionCollection()->action("show_cnames"))->setChecked( Options::showCNames() ); ((TDEToggleAction*)actionCollection()->action("show_cnames"))->setChecked( Options::showCNames() );
((KToggleAction*)actionCollection()->action("show_cbounds"))->setChecked( Options::showCBounds() ); ((TDEToggleAction*)actionCollection()->action("show_cbounds"))->setChecked( Options::showCBounds() );
((KToggleAction*)actionCollection()->action("show_mw"))->setChecked( Options::showMilkyWay() ); ((TDEToggleAction*)actionCollection()->action("show_mw"))->setChecked( Options::showMilkyWay() );
((KToggleAction*)actionCollection()->action("show_grid"))->setChecked( Options::showGrid() ); ((TDEToggleAction*)actionCollection()->action("show_grid"))->setChecked( Options::showGrid() );
((KToggleAction*)actionCollection()->action("show_horizon"))->setChecked( Options::showGround() ); ((TDEToggleAction*)actionCollection()->action("show_horizon"))->setChecked( Options::showGround() );
//color scheme //color scheme
pd->kstarsData->colorScheme()->loadFromConfig( kapp->config() ); pd->kstarsData->colorScheme()->loadFromConfig( kapp->config() );

@ -32,10 +32,10 @@
// forward declaration is enough. We only need pointers // forward declaration is enough. We only need pointers
class TQPalette; class TQPalette;
class TQVBoxLayout; class TQVBoxLayout;
class KActionMenu; class TDEActionMenu;
class KDialogBase; class KDialogBase;
class KKey; class KKey;
class KToolBar; class TDEToolBar;
class dms; class dms;
class KSNewStuff; class KSNewStuff;
@ -64,7 +64,7 @@ class imagesequence;
*@version 1.0 *@version 1.0
*/ */
class KStars : public KMainWindow, virtual public KStarsInterface class KStars : public TDEMainWindow, virtual public KStarsInterface
{ {
Q_OBJECT Q_OBJECT
@ -634,12 +634,12 @@ class KStars : public KMainWindow, virtual public KStarsInterface
TQWidget *centralWidget; TQWidget *centralWidget;
TQVBoxLayout *topLayout; TQVBoxLayout *topLayout;
KToolBar *viewToolBar; TDEToolBar *viewToolBar;
TimeStepBox *TimeStep; TimeStepBox *TimeStep;
ToggleAction *actCoordSys; ToggleAction *actCoordSys;
ToggleAction *actObsList; ToggleAction *actObsList;
KActionMenu *colorActionMenu, *fovActionMenu; TDEActionMenu *colorActionMenu, *fovActionMenu;
KDialogBase *AAVSODialog; KDialogBase *AAVSODialog;
FindDialog *findDialog; FindDialog *findDialog;

@ -873,7 +873,7 @@ void KStars::slotFOVEdit() {
if ( fields.count() == 4 ) { if ( fields.count() == 4 ) {
TQString nm = fields[0].stripWhiteSpace(); TQString nm = fields[0].stripWhiteSpace();
KToggleAction *kta = new KToggleAction( nm, 0, TQT_TQOBJECT(this), TQT_SLOT( slotTargetSymbol() ), TDEToggleAction *kta = new TDEToggleAction( nm, 0, TQT_TQOBJECT(this), TQT_SLOT( slotTargetSymbol() ),
actionCollection(), nm.utf8() ); actionCollection(), nm.utf8() );
kta->setExclusiveGroup( "fovsymbol" ); kta->setExclusiveGroup( "fovsymbol" );
fovActionMenu->insert( kta ); fovActionMenu->insert( kta );
@ -884,7 +884,7 @@ void KStars::slotFOVEdit() {
} }
fovActionMenu->popupMenu()->insertSeparator(); fovActionMenu->popupMenu()->insertSeparator();
fovActionMenu->insert( new KAction( i18n( "Edit FOV Symbols..." ), 0, TQT_TQOBJECT(this), fovActionMenu->insert( new TDEAction( i18n( "Edit FOV Symbols..." ), 0, TQT_TQOBJECT(this),
TQT_SLOT( slotFOVEdit() ), actionCollection(), "edit_fov" ) ); TQT_SLOT( slotFOVEdit() ), actionCollection(), "edit_fov" ) );
//set FOV to whatever was highlighted in FOV dialog //set FOV to whatever was highlighted in FOV dialog
@ -1019,7 +1019,7 @@ void KStars::slotShowGUIItem( bool show ) {
} }
void KStars::addColorMenuItem( TQString name, TQString actionName ) { void KStars::addColorMenuItem( TQString name, TQString actionName ) {
colorActionMenu->insert( new KAction( name, 0, colorActionMenu->insert( new TDEAction( name, 0,
TQT_TQOBJECT(this), TQT_SLOT( slotColorScheme() ), actionCollection(), actionName.local8Bit() ) ); TQT_TQOBJECT(this), TQT_SLOT( slotColorScheme() ), actionCollection(), actionName.local8Bit() ) );
} }

@ -48,24 +48,24 @@
void KStars::initActions() { void KStars::initActions() {
//File Menu: //File Menu:
new KAction(i18n("&New Window"), "window_new", KShortcut( "Ctrl+N" ), new TDEAction(i18n("&New Window"), "window_new", TDEShortcut( "Ctrl+N" ),
TQT_TQOBJECT(this), TQT_SLOT( newWindow() ), actionCollection(), "new_window"); TQT_TQOBJECT(this), TQT_SLOT( newWindow() ), actionCollection(), "new_window");
new KAction(i18n("&Close Window"), "fileclose", KShortcut( "Ctrl+W" ), new TDEAction(i18n("&Close Window"), "fileclose", TDEShortcut( "Ctrl+W" ),
TQT_TQOBJECT(this), TQT_SLOT( closeWindow() ), actionCollection(), "close_window"); TQT_TQOBJECT(this), TQT_SLOT( closeWindow() ), actionCollection(), "close_window");
new KAction( i18n( "&Download Data..." ), "knewstuff", KShortcut( "Ctrl+D" ), new TDEAction( i18n( "&Download Data..." ), "knewstuff", TDEShortcut( "Ctrl+D" ),
TQT_TQOBJECT(this), TQT_SLOT( slotDownload() ), actionCollection(), "get_data" ); TQT_TQOBJECT(this), TQT_SLOT( slotDownload() ), actionCollection(), "get_data" );
new KAction( i18n( "Open FITS..."), "fileopen", KShortcut( "Ctrl+O"), TQT_TQOBJECT(this), TQT_SLOT( slotOpenFITS()), actionCollection(), "open_file"); new TDEAction( i18n( "Open FITS..."), "fileopen", TDEShortcut( "Ctrl+O"), TQT_TQOBJECT(this), TQT_SLOT( slotOpenFITS()), actionCollection(), "open_file");
new KAction( i18n( "&Save Sky Image..." ), "fileexport", KShortcut( "Ctrl+I" ), new TDEAction( i18n( "&Save Sky Image..." ), "fileexport", TDEShortcut( "Ctrl+I" ),
TQT_TQOBJECT(this), TQT_SLOT( slotExportImage() ), actionCollection(), "export_image" ); TQT_TQOBJECT(this), TQT_SLOT( slotExportImage() ), actionCollection(), "export_image" );
new KAction( i18n( "&Run Script..." ), "launch", KShortcut( "Ctrl+R" ), new TDEAction( i18n( "&Run Script..." ), "launch", TDEShortcut( "Ctrl+R" ),
TQT_TQOBJECT(this), TQT_SLOT( slotRunScript() ), actionCollection(), "run_script" ); TQT_TQOBJECT(this), TQT_SLOT( slotRunScript() ), actionCollection(), "run_script" );
KStdAction::print(TQT_TQOBJECT(this), TQT_SLOT( slotPrint() ), actionCollection(), "print" ); KStdAction::print(TQT_TQOBJECT(this), TQT_SLOT( slotPrint() ), actionCollection(), "print" );
KStdAction::quit(TQT_TQOBJECT(this), TQT_SLOT( close() ), actionCollection(), "quit" ); KStdAction::quit(TQT_TQOBJECT(this), TQT_SLOT( close() ), actionCollection(), "quit" );
//Time Menu: //Time Menu:
new KAction( i18n( "Set Time to &Now" ), KShortcut( "Ctrl+E" ), new TDEAction( i18n( "Set Time to &Now" ), TDEShortcut( "Ctrl+E" ),
TQT_TQOBJECT(this), TQT_SLOT( slotSetTimeToNow() ), actionCollection(), "time_to_now" ); TQT_TQOBJECT(this), TQT_SLOT( slotSetTimeToNow() ), actionCollection(), "time_to_now" );
new KAction( i18n( "set Clock to New Time", "&Set Time..." ), "clock", KShortcut( "Ctrl+S" ), new TDEAction( i18n( "set Clock to New Time", "&Set Time..." ), "clock", TDEShortcut( "Ctrl+S" ),
TQT_TQOBJECT(this), TQT_SLOT( slotSetTime() ), actionCollection(), "time_dialog" ); TQT_TQOBJECT(this), TQT_SLOT( slotSetTime() ), actionCollection(), "time_dialog" );
ToggleAction *actTimeRun = new ToggleAction( i18n( "Stop &Clock" ), BarIcon("player_pause"), ToggleAction *actTimeRun = new ToggleAction( i18n( "Stop &Clock" ), BarIcon("player_pause"),
i18n("Start &Clock"), BarIcon("1rightarrow"), i18n("Start &Clock"), BarIcon("1rightarrow"),
@ -78,33 +78,33 @@ void KStars::initActions() {
TQObject::connect(data()->clock(), TQT_SIGNAL(clockStopped()), this, TQT_SLOT(updateTime()) ); TQObject::connect(data()->clock(), TQT_SIGNAL(clockStopped()), this, TQT_SLOT(updateTime()) );
//Focus Menu: //Focus Menu:
new KAction(i18n( "&Zenith" ), KShortcut( "Z" ), new TDEAction(i18n( "&Zenith" ), TDEShortcut( "Z" ),
TQT_TQOBJECT(this), TQT_SLOT( slotPointFocus() ), actionCollection(), "zenith"); TQT_TQOBJECT(this), TQT_SLOT( slotPointFocus() ), actionCollection(), "zenith");
new KAction(i18n( "&North" ), KShortcut( "N" ), new TDEAction(i18n( "&North" ), TDEShortcut( "N" ),
TQT_TQOBJECT(this), TQT_SLOT( slotPointFocus() ), actionCollection(), "north"); TQT_TQOBJECT(this), TQT_SLOT( slotPointFocus() ), actionCollection(), "north");
new KAction(i18n( "&East" ), KShortcut( "E" ), new TDEAction(i18n( "&East" ), TDEShortcut( "E" ),
TQT_TQOBJECT(this), TQT_SLOT( slotPointFocus() ), actionCollection(), "east"); TQT_TQOBJECT(this), TQT_SLOT( slotPointFocus() ), actionCollection(), "east");
new KAction(i18n( "&South" ), KShortcut( "S" ), new TDEAction(i18n( "&South" ), TDEShortcut( "S" ),
TQT_TQOBJECT(this), TQT_SLOT( slotPointFocus() ), actionCollection(), "south"); TQT_TQOBJECT(this), TQT_SLOT( slotPointFocus() ), actionCollection(), "south");
new KAction(i18n( "&West" ), KShortcut( "W" ), new TDEAction(i18n( "&West" ), TDEShortcut( "W" ),
TQT_TQOBJECT(this), TQT_SLOT( slotPointFocus() ), actionCollection(), "west"); TQT_TQOBJECT(this), TQT_SLOT( slotPointFocus() ), actionCollection(), "west");
KAction *tmpAction = KStdAction::find( TQT_TQOBJECT(this), TQT_SLOT( slotFind() ), TDEAction *tmpAction = KStdAction::find( TQT_TQOBJECT(this), TQT_SLOT( slotFind() ),
actionCollection(), "find_object" ); actionCollection(), "find_object" );
tmpAction->setText( i18n( "&Find Object..." ) ); tmpAction->setText( i18n( "&Find Object..." ) );
tmpAction->setToolTip( i18n( "Find object" ) ); tmpAction->setToolTip( i18n( "Find object" ) );
new KAction( i18n( "Engage &Tracking" ), "decrypted", KShortcut( "Ctrl+T" ), new TDEAction( i18n( "Engage &Tracking" ), "decrypted", TDEShortcut( "Ctrl+T" ),
TQT_TQOBJECT(this), TQT_SLOT( slotTrack() ), actionCollection(), "track_object" ); TQT_TQOBJECT(this), TQT_SLOT( slotTrack() ), actionCollection(), "track_object" );
new KAction( i18n( "Set Focus &Manually..." ), KShortcut( "Ctrl+M" ), new TDEAction( i18n( "Set Focus &Manually..." ), TDEShortcut( "Ctrl+M" ),
TQT_TQOBJECT(this), TQT_SLOT( slotManualFocus() ), actionCollection(), "manual_focus" ); TQT_TQOBJECT(this), TQT_SLOT( slotManualFocus() ), actionCollection(), "manual_focus" );
//View Menu: //View Menu:
KStdAction::zoomIn(TQT_TQOBJECT(this), TQT_SLOT( slotZoomIn() ), actionCollection(), "zoom_in" ); KStdAction::zoomIn(TQT_TQOBJECT(this), TQT_SLOT( slotZoomIn() ), actionCollection(), "zoom_in" );
KStdAction::zoomOut(TQT_TQOBJECT(this), TQT_SLOT( slotZoomOut() ), actionCollection(), "zoom_out" ); KStdAction::zoomOut(TQT_TQOBJECT(this), TQT_SLOT( slotZoomOut() ), actionCollection(), "zoom_out" );
new KAction( i18n( "&Default Zoom" ), "viewmagfit.png", KShortcut( "Ctrl+Z" ), new TDEAction( i18n( "&Default Zoom" ), "viewmagfit.png", TDEShortcut( "Ctrl+Z" ),
TQT_TQOBJECT(this), TQT_SLOT( slotDefaultZoom() ), actionCollection(), "zoom_default" ); TQT_TQOBJECT(this), TQT_SLOT( slotDefaultZoom() ), actionCollection(), "zoom_default" );
new KAction( i18n( "&Zoom to Angular Size..." ), "viewmag.png", KShortcut( "Ctrl+Shift+Z" ), new TDEAction( i18n( "&Zoom to Angular Size..." ), "viewmag.png", TDEShortcut( "Ctrl+Shift+Z" ),
TQT_TQOBJECT(this), TQT_SLOT( slotSetZoom() ), actionCollection(), "zoom_set" ); TQT_TQOBJECT(this), TQT_SLOT( slotSetZoom() ), actionCollection(), "zoom_set" );
actCoordSys = new ToggleAction( i18n("Horizontal &Coordinates"), i18n( "Equatorial &Coordinates" ), actCoordSys = new ToggleAction( i18n("Horizontal &Coordinates"), i18n( "Equatorial &Coordinates" ),
Key_Space, TQT_TQOBJECT(this), TQT_SLOT( slotCoordSys() ), actionCollection(), "coordsys" ); Key_Space, TQT_TQOBJECT(this), TQT_SLOT( slotCoordSys() ), actionCollection(), "coordsys" );
@ -114,56 +114,56 @@ void KStars::initActions() {
//Settings Menu: //Settings Menu:
// //
// MHH - 2002-01-13 // MHH - 2002-01-13
// Setting the slot in the KToggleAction constructor, connects the slot to // Setting the slot in the TDEToggleAction constructor, connects the slot to
// the activated signal instead of the toggled signal. This seems like a bug // the activated signal instead of the toggled signal. This seems like a bug
// to me, but ... // to me, but ...
// //
//Info Boxes option actions //Info Boxes option actions
KToggleAction *a = new KToggleAction(i18n( "Show the information boxes", "Show &Info Boxes"), TDEToggleAction *a = new TDEToggleAction(i18n( "Show the information boxes", "Show &Info Boxes"),
0, 0, 0, actionCollection(), "show_boxes"); 0, 0, 0, actionCollection(), "show_boxes");
a->setChecked( Options::showInfoBoxes() ); a->setChecked( Options::showInfoBoxes() );
TQObject::connect(a, TQT_SIGNAL( toggled(bool) ), infoBoxes(), TQT_SLOT(setVisible(bool))); TQObject::connect(a, TQT_SIGNAL( toggled(bool) ), infoBoxes(), TQT_SLOT(setVisible(bool)));
TQObject::connect(a, TQT_SIGNAL( toggled(bool) ), this, TQT_SLOT(slotShowGUIItem(bool))); TQObject::connect(a, TQT_SIGNAL( toggled(bool) ), this, TQT_SLOT(slotShowGUIItem(bool)));
a = new KToggleAction(i18n( "Show time-related info box", "Show &Time Box"), a = new TDEToggleAction(i18n( "Show time-related info box", "Show &Time Box"),
0, 0, 0, actionCollection(), "show_time_box"); 0, 0, 0, actionCollection(), "show_time_box");
TQObject::connect(a, TQT_SIGNAL( toggled(bool) ), infoBoxes(), TQT_SLOT(showTimeBox(bool))); TQObject::connect(a, TQT_SIGNAL( toggled(bool) ), infoBoxes(), TQT_SLOT(showTimeBox(bool)));
TQObject::connect(a, TQT_SIGNAL( toggled(bool) ), this, TQT_SLOT(slotShowGUIItem(bool))); TQObject::connect(a, TQT_SIGNAL( toggled(bool) ), this, TQT_SLOT(slotShowGUIItem(bool)));
a = new KToggleAction(i18n( "Show focus-related info box", "Show &Focus Box"), a = new TDEToggleAction(i18n( "Show focus-related info box", "Show &Focus Box"),
0, 0, 0, actionCollection(), "show_focus_box"); 0, 0, 0, actionCollection(), "show_focus_box");
TQObject::connect(a, TQT_SIGNAL( toggled(bool) ), infoBoxes(), TQT_SLOT(showFocusBox(bool))); TQObject::connect(a, TQT_SIGNAL( toggled(bool) ), infoBoxes(), TQT_SLOT(showFocusBox(bool)));
TQObject::connect(a, TQT_SIGNAL( toggled(bool) ), this, TQT_SLOT(slotShowGUIItem(bool))); TQObject::connect(a, TQT_SIGNAL( toggled(bool) ), this, TQT_SLOT(slotShowGUIItem(bool)));
a = new KToggleAction(i18n( "Show location-related info box", "Show &Location Box"), a = new TDEToggleAction(i18n( "Show location-related info box", "Show &Location Box"),
0, 0, 0, actionCollection(), "show_location_box"); 0, 0, 0, actionCollection(), "show_location_box");
TQObject::connect(a, TQT_SIGNAL( toggled(bool) ), infoBoxes(), TQT_SLOT(showGeoBox(bool))); TQObject::connect(a, TQT_SIGNAL( toggled(bool) ), infoBoxes(), TQT_SLOT(showGeoBox(bool)));
TQObject::connect(a, TQT_SIGNAL( toggled(bool) ), this, TQT_SLOT(slotShowGUIItem(bool))); TQObject::connect(a, TQT_SIGNAL( toggled(bool) ), this, TQT_SLOT(slotShowGUIItem(bool)));
//Toolbar view options //Toolbar view options
a = new KToggleAction(i18n( "Show Main Toolbar" ), a = new TDEToggleAction(i18n( "Show Main Toolbar" ),
0, 0, 0, actionCollection(), "show_mainToolBar"); 0, 0, 0, actionCollection(), "show_mainToolBar");
TQObject::connect(a, TQT_SIGNAL( toggled(bool) ), this, TQT_SLOT(slotShowGUIItem(bool))); TQObject::connect(a, TQT_SIGNAL( toggled(bool) ), this, TQT_SLOT(slotShowGUIItem(bool)));
a = new KToggleAction(i18n( "Show View Toolbar" ), a = new TDEToggleAction(i18n( "Show View Toolbar" ),
0, 0, 0, actionCollection(), "show_viewToolBar"); 0, 0, 0, actionCollection(), "show_viewToolBar");
TQObject::connect(a, TQT_SIGNAL( toggled(bool) ), this, TQT_SLOT(slotShowGUIItem(bool))); TQObject::connect(a, TQT_SIGNAL( toggled(bool) ), this, TQT_SLOT(slotShowGUIItem(bool)));
//Statusbar view options //Statusbar view options
a = new KToggleAction(i18n( "Show Statusbar" ), a = new TDEToggleAction(i18n( "Show Statusbar" ),
0, 0, 0, actionCollection(), "show_statusBar"); 0, 0, 0, actionCollection(), "show_statusBar");
TQObject::connect(a, TQT_SIGNAL( toggled(bool) ), this, TQT_SLOT(slotShowGUIItem(bool))); TQObject::connect(a, TQT_SIGNAL( toggled(bool) ), this, TQT_SLOT(slotShowGUIItem(bool)));
a = new KToggleAction(i18n( "Show Az/Alt Field" ), a = new TDEToggleAction(i18n( "Show Az/Alt Field" ),
0, 0, 0, actionCollection(), "show_sbAzAlt"); 0, 0, 0, actionCollection(), "show_sbAzAlt");
TQObject::connect(a, TQT_SIGNAL( toggled(bool) ), this, TQT_SLOT(slotShowGUIItem(bool))); TQObject::connect(a, TQT_SIGNAL( toggled(bool) ), this, TQT_SLOT(slotShowGUIItem(bool)));
a = new KToggleAction(i18n( "Show RA/Dec Field" ), a = new TDEToggleAction(i18n( "Show RA/Dec Field" ),
0, 0, 0, actionCollection(), "show_sbRADec"); 0, 0, 0, actionCollection(), "show_sbRADec");
TQObject::connect(a, TQT_SIGNAL( toggled(bool) ), this, TQT_SLOT(slotShowGUIItem(bool))); TQObject::connect(a, TQT_SIGNAL( toggled(bool) ), this, TQT_SLOT(slotShowGUIItem(bool)));
//Color scheme actions. These are added to the "colorschemes" KActionMenu. //Color scheme actions. These are added to the "colorschemes" TDEActionMenu.
colorActionMenu = new KActionMenu( i18n( "C&olor Schemes" ), actionCollection(), "colorschemes" ); colorActionMenu = new TDEActionMenu( i18n( "C&olor Schemes" ), actionCollection(), "colorschemes" );
addColorMenuItem( i18n( "&Default" ), "cs_default" ); addColorMenuItem( i18n( "&Default" ), "cs_default" );
addColorMenuItem( i18n( "&Star Chart" ), "cs_chart" ); addColorMenuItem( i18n( "&Star Chart" ), "cs_chart" );
addColorMenuItem( i18n( "&Night Vision" ), "cs_night" ); addColorMenuItem( i18n( "&Night Vision" ), "cs_night" );
@ -187,65 +187,65 @@ void KStars::initActions() {
} }
//Add FOV Symbol actions //Add FOV Symbol actions
fovActionMenu = new KActionMenu( i18n( "&FOV Symbols" ), actionCollection(), "fovsymbols" ); fovActionMenu = new TDEActionMenu( i18n( "&FOV Symbols" ), actionCollection(), "fovsymbols" );
initFOV(); initFOV();
new KAction( i18n( "Location on Earth", "&Geographic..." ), new TDEAction( i18n( "Location on Earth", "&Geographic..." ),
"kstars_geo", KShortcut( "Ctrl+G" ), TQT_TQOBJECT(this), "kstars_geo", TDEShortcut( "Ctrl+G" ), TQT_TQOBJECT(this),
TQT_SLOT( slotGeoLocator() ), actionCollection(), "geolocation" ); TQT_SLOT( slotGeoLocator() ), actionCollection(), "geolocation" );
KStdAction::preferences( TQT_TQOBJECT(this), TQT_SLOT( slotViewOps() ), actionCollection(), "configure" ); KStdAction::preferences( TQT_TQOBJECT(this), TQT_SLOT( slotViewOps() ), actionCollection(), "configure" );
new KAction(i18n( "Startup Wizard..." ), "wizard", KShortcut(), new TDEAction(i18n( "Startup Wizard..." ), "wizard", TDEShortcut(),
TQT_TQOBJECT(this), TQT_SLOT( slotWizard() ), actionCollection(), "startwizard" ); TQT_TQOBJECT(this), TQT_SLOT( slotWizard() ), actionCollection(), "startwizard" );
//Tools Menu: //Tools Menu:
new KAction(i18n( "Calculator..."), KShortcut( "Ctrl+C"), new TDEAction(i18n( "Calculator..."), TDEShortcut( "Ctrl+C"),
TQT_TQOBJECT(this), TQT_SLOT( slotCalculator() ), actionCollection(), "astrocalculator"); TQT_TQOBJECT(this), TQT_SLOT( slotCalculator() ), actionCollection(), "astrocalculator");
new KAction(i18n( "Observing List..."), KShortcut( "Ctrl+L"), new TDEAction(i18n( "Observing List..."), TDEShortcut( "Ctrl+L"),
TQT_TQOBJECT(this), TQT_SLOT( slotObsList() ), actionCollection(), "obslist"); TQT_TQOBJECT(this), TQT_SLOT( slotObsList() ), actionCollection(), "obslist");
// enable action only if file was loaded and processed successfully. // enable action only if file was loaded and processed successfully.
if (!data()->VariableStarsList.isEmpty()) if (!data()->VariableStarsList.isEmpty())
new KAction(i18n( "AAVSO Light Curves..."), KShortcut( "Ctrl+V"), new TDEAction(i18n( "AAVSO Light Curves..."), TDEShortcut( "Ctrl+V"),
TQT_TQOBJECT(this), TQT_SLOT( slotLCGenerator() ), actionCollection(), "lightcurvegenerator"); TQT_TQOBJECT(this), TQT_SLOT( slotLCGenerator() ), actionCollection(), "lightcurvegenerator");
new KAction(i18n( "Altitude vs. Time..."), KShortcut( "Ctrl+A"), new TDEAction(i18n( "Altitude vs. Time..."), TDEShortcut( "Ctrl+A"),
TQT_TQOBJECT(this), TQT_SLOT( slotAVT() ), actionCollection(), "altitude_vs_time"); TQT_TQOBJECT(this), TQT_SLOT( slotAVT() ), actionCollection(), "altitude_vs_time");
new KAction(i18n( "What's up Tonight..."), KShortcut("Ctrl+U"), new TDEAction(i18n( "What's up Tonight..."), TDEShortcut("Ctrl+U"),
TQT_TQOBJECT(this), TQT_SLOT(slotWUT()), actionCollection(), "whats_up_tonight"); TQT_TQOBJECT(this), TQT_SLOT(slotWUT()), actionCollection(), "whats_up_tonight");
//FIXME GLOSSARY //FIXME GLOSSARY
// new KAction(i18n( "Glossary..."), KShortcut("Ctrl+K"), // new TDEAction(i18n( "Glossary..."), TDEShortcut("Ctrl+K"),
// this, TQT_SLOT(slotGlossary()), actionCollection(), "glossary"); // this, TQT_SLOT(slotGlossary()), actionCollection(), "glossary");
new KAction(i18n( "Script Builder..."), KShortcut("Ctrl+B"), new TDEAction(i18n( "Script Builder..."), TDEShortcut("Ctrl+B"),
TQT_TQOBJECT(this), TQT_SLOT(slotScriptBuilder()), actionCollection(), "scriptbuilder"); TQT_TQOBJECT(this), TQT_SLOT(slotScriptBuilder()), actionCollection(), "scriptbuilder");
new KAction(i18n( "Solar System..."), KShortcut("Ctrl+Y"), new TDEAction(i18n( "Solar System..."), TDEShortcut("Ctrl+Y"),
TQT_TQOBJECT(this), TQT_SLOT(slotSolarSystem()), actionCollection(), "solarsystem"); TQT_TQOBJECT(this), TQT_SLOT(slotSolarSystem()), actionCollection(), "solarsystem");
new KAction(i18n( "Jupiter's Moons..."), KShortcut("Ctrl+J"), new TDEAction(i18n( "Jupiter's Moons..."), TDEShortcut("Ctrl+J"),
TQT_TQOBJECT(this), TQT_SLOT(slotJMoonTool()), actionCollection(), "jmoontool"); TQT_TQOBJECT(this), TQT_SLOT(slotJMoonTool()), actionCollection(), "jmoontool");
// devices Menu // devices Menu
new KAction(i18n("Telescope Wizard..."), 0, TQT_TQOBJECT(this), TQT_SLOT(slotTelescopeWizard()), actionCollection(), "telescope_wizard"); new TDEAction(i18n("Telescope Wizard..."), 0, TQT_TQOBJECT(this), TQT_SLOT(slotTelescopeWizard()), actionCollection(), "telescope_wizard");
new KAction(i18n("Telescope Properties..."), 0, TQT_TQOBJECT(this), TQT_SLOT(slotTelescopeProperties()), actionCollection(), "telescope_properties"); new TDEAction(i18n("Telescope Properties..."), 0, TQT_TQOBJECT(this), TQT_SLOT(slotTelescopeProperties()), actionCollection(), "telescope_properties");
new KAction(i18n("Device Manager..."), 0, TQT_TQOBJECT(this), TQT_SLOT(slotINDIDriver()), actionCollection(), "device_manager"); new TDEAction(i18n("Device Manager..."), 0, TQT_TQOBJECT(this), TQT_SLOT(slotINDIDriver()), actionCollection(), "device_manager");
tmpAction = new KAction(i18n("Capture Image Sequence..."), 0, TQT_TQOBJECT(this), TQT_SLOT(slotImageSequence()), actionCollection(), "capture_sequence"); tmpAction = new TDEAction(i18n("Capture Image Sequence..."), 0, TQT_TQOBJECT(this), TQT_SLOT(slotImageSequence()), actionCollection(), "capture_sequence");
tmpAction->setEnabled(false); tmpAction->setEnabled(false);
tmpAction = new KAction(i18n("INDI Control Panel..."), 0, TQT_TQOBJECT(this), TQT_SLOT(slotINDIPanel()), actionCollection(), "indi_control_panel"); tmpAction = new TDEAction(i18n("INDI Control Panel..."), 0, TQT_TQOBJECT(this), TQT_SLOT(slotINDIPanel()), actionCollection(), "indi_control_panel");
tmpAction->setEnabled(false); tmpAction->setEnabled(false);
new KAction(i18n("Configure INDI..."), 0, TQT_TQOBJECT(this), TQT_SLOT(slotINDIConf()), actionCollection(), "configure_indi"); new TDEAction(i18n("Configure INDI..."), 0, TQT_TQOBJECT(this), TQT_SLOT(slotINDIConf()), actionCollection(), "configure_indi");
//Help Menu: //Help Menu:
new KAction( i18n( "Tip of the Day" ), "idea", 0, new TDEAction( i18n( "Tip of the Day" ), "idea", 0,
TQT_TQOBJECT(this), TQT_SLOT( slotTipOfDay() ), actionCollection(), "help_tipofday" ); TQT_TQOBJECT(this), TQT_SLOT( slotTipOfDay() ), actionCollection(), "help_tipofday" );
//Handbook toolBar item: //Handbook toolBar item:
new KAction( i18n( "&Handbook" ), "contents", KShortcut( "F1" ), new TDEAction( i18n( "&Handbook" ), "contents", TDEShortcut( "F1" ),
TQT_TQOBJECT(this), TQT_SLOT( appHelpActivated() ), actionCollection(), "handbook" ); TQT_TQOBJECT(this), TQT_SLOT( appHelpActivated() ), actionCollection(), "handbook" );
// //
@ -253,39 +253,39 @@ void KStars::initActions() {
// //
//show_stars: //show_stars:
a = new KToggleAction( i18n( "Toggle Stars" ), "kstars_stars", a = new TDEToggleAction( i18n( "Toggle Stars" ), "kstars_stars",
0, TQT_TQOBJECT(this), TQT_SLOT( slotViewToolBar() ), actionCollection(), "show_stars" ); 0, TQT_TQOBJECT(this), TQT_SLOT( slotViewToolBar() ), actionCollection(), "show_stars" );
//show_deepsky: //show_deepsky:
a = new KToggleAction( i18n( "Toggle Deep Sky Objects" ), "kstars_deepsky", a = new TDEToggleAction( i18n( "Toggle Deep Sky Objects" ), "kstars_deepsky",
0, TQT_TQOBJECT(this), TQT_SLOT( slotViewToolBar() ), actionCollection(), "show_deepsky" ); 0, TQT_TQOBJECT(this), TQT_SLOT( slotViewToolBar() ), actionCollection(), "show_deepsky" );
//show_planets: //show_planets:
a = new KToggleAction( i18n( "Toggle Solar System" ), "kstars_planets", a = new TDEToggleAction( i18n( "Toggle Solar System" ), "kstars_planets",
0, TQT_TQOBJECT(this), TQT_SLOT( slotViewToolBar() ), actionCollection(), "show_planets" ); 0, TQT_TQOBJECT(this), TQT_SLOT( slotViewToolBar() ), actionCollection(), "show_planets" );
//show_clines: //show_clines:
a = new KToggleAction( i18n( "Toggle Constellation Lines" ), "kstars_clines", a = new TDEToggleAction( i18n( "Toggle Constellation Lines" ), "kstars_clines",
0, TQT_TQOBJECT(this), TQT_SLOT( slotViewToolBar() ), actionCollection(), "show_clines" ); 0, TQT_TQOBJECT(this), TQT_SLOT( slotViewToolBar() ), actionCollection(), "show_clines" );
//show_cnames: //show_cnames:
a = new KToggleAction( i18n( "Toggle Constellation Names" ), "kstars_cnames", a = new TDEToggleAction( i18n( "Toggle Constellation Names" ), "kstars_cnames",
0, TQT_TQOBJECT(this), TQT_SLOT( slotViewToolBar() ), actionCollection(), "show_cnames" ); 0, TQT_TQOBJECT(this), TQT_SLOT( slotViewToolBar() ), actionCollection(), "show_cnames" );
//show_cbound: //show_cbound:
a = new KToggleAction( i18n( "Toggle Constellation Boundaries" ), "kstars_cbound", a = new TDEToggleAction( i18n( "Toggle Constellation Boundaries" ), "kstars_cbound",
0, TQT_TQOBJECT(this), TQT_SLOT( slotViewToolBar() ), actionCollection(), "show_cbounds" ); 0, TQT_TQOBJECT(this), TQT_SLOT( slotViewToolBar() ), actionCollection(), "show_cbounds" );
//show_mw: //show_mw:
a = new KToggleAction( i18n( "Toggle Milky Way" ), "kstars_mw", a = new TDEToggleAction( i18n( "Toggle Milky Way" ), "kstars_mw",
0, TQT_TQOBJECT(this), TQT_SLOT( slotViewToolBar() ), actionCollection(), "show_mw" ); 0, TQT_TQOBJECT(this), TQT_SLOT( slotViewToolBar() ), actionCollection(), "show_mw" );
//show_grid: //show_grid:
a = new KToggleAction( i18n( "Toggle Coordinate Grid" ), "kstars_grid", a = new TDEToggleAction( i18n( "Toggle Coordinate Grid" ), "kstars_grid",
0, TQT_TQOBJECT(this), TQT_SLOT( slotViewToolBar() ), actionCollection(), "show_grid" ); 0, TQT_TQOBJECT(this), TQT_SLOT( slotViewToolBar() ), actionCollection(), "show_grid" );
//show_horizon: //show_horizon:
a = new KToggleAction( i18n( "Toggle Ground" ), "kstars_horizon", a = new TDEToggleAction( i18n( "Toggle Ground" ), "kstars_horizon",
0, TQT_TQOBJECT(this), TQT_SLOT( slotViewToolBar() ), actionCollection(), "show_horizon" ); 0, TQT_TQOBJECT(this), TQT_SLOT( slotViewToolBar() ), actionCollection(), "show_horizon" );
if (Options::fitsSaveDirectory().isEmpty()) if (Options::fitsSaveDirectory().isEmpty())
@ -327,7 +327,7 @@ void KStars::initFOV() {
if ( fields.count() == 4 ) { if ( fields.count() == 4 ) {
nm = fields[0].stripWhiteSpace(); nm = fields[0].stripWhiteSpace();
KToggleAction *kta = new KToggleAction( nm, 0, TQT_TQOBJECT(this), TQT_SLOT( slotTargetSymbol() ), TDEToggleAction *kta = new TDEToggleAction( nm, 0, TQT_TQOBJECT(this), TQT_SLOT( slotTargetSymbol() ),
actionCollection(), nm.utf8() ); actionCollection(), nm.utf8() );
kta->setExclusiveGroup( "fovsymbol" ); kta->setExclusiveGroup( "fovsymbol" );
if ( nm == Options::fOVName() ) kta->setChecked( true ); if ( nm == Options::fOVName() ) kta->setChecked( true );
@ -339,7 +339,7 @@ void KStars::initFOV() {
} }
fovActionMenu->popupMenu()->insertSeparator(); fovActionMenu->popupMenu()->insertSeparator();
fovActionMenu->insert( new KAction( i18n( "Edit FOV Symbols..." ), 0, TQT_TQOBJECT(this), TQT_SLOT( slotFOVEdit() ), actionCollection(), "edit_fov" ) ); fovActionMenu->insert( new TDEAction( i18n( "Edit FOV Symbols..." ), 0, TQT_TQOBJECT(this), TQT_SLOT( slotFOVEdit() ), actionCollection(), "edit_fov" ) );
} }
void KStars::initStatusBar() { void KStars::initStatusBar() {
@ -477,7 +477,7 @@ void KStars::privatedata::buildGUI() {
//Do not show text on the view toolbar buttons //Do not show text on the view toolbar buttons
//FIXME: after strings freeze, remove this and make the //FIXME: after strings freeze, remove this and make the
//text of each button shorter //text of each button shorter
ks->toolBar( "viewToolBar" )->setIconText( KToolBar::IconOnly ); ks->toolBar( "viewToolBar" )->setIconText( TDEToolBar::IconOnly );
ks->TimeStep = new TimeStepBox( ks->toolBar() ); ks->TimeStep = new TimeStepBox( ks->toolBar() );
ks->toolBar()->insertWidget( 0, 6, ks->TimeStep, 15 ); ks->toolBar()->insertWidget( 0, 6, ks->TimeStep, 15 );

@ -382,7 +382,7 @@ country.&lt;/p&gt;
</widget> </widget>
</hbox> </hbox>
</widget> </widget>
<widget class="KListBox"> <widget class="TDEListBox">
<property name="name"> <property name="name">
<cstring>CityListBox</cstring> <cstring>CityListBox</cstring>
</property> </property>

@ -30,7 +30,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>ColorPalette</cstring> <cstring>ColorPalette</cstring>
</property> </property>
@ -156,7 +156,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>PresetBox</cstring> <cstring>PresetBox</cstring>
</property> </property>

@ -89,7 +89,7 @@
</widget> </widget>
</hbox> </hbox>
</widget> </widget>
<widget class="KListBox" row="1" column="0" rowspan="2" colspan="1"> <widget class="TDEListBox" row="1" column="0" rowspan="2" colspan="1">
<property name="name"> <property name="name">
<cstring>telescopeListBox</cstring> <cstring>telescopeListBox</cstring>
</property> </property>

@ -76,7 +76,7 @@
</widget> </widget>
</hbox> </hbox>
</widget> </widget>
<widget class="KListBox"> <widget class="TDEListBox">
<property name="name"> <property name="name">
<cstring>ImageList</cstring> <cstring>ImageList</cstring>
</property> </property>

@ -20,7 +20,7 @@
ToggleAction::ToggleAction(const TQString& ontext, const TQIconSet& onpix, ToggleAction::ToggleAction(const TQString& ontext, const TQIconSet& onpix,
const TQString& offtext, const TQIconSet& offpix, const TQString& offtext, const TQIconSet& offpix,
int accel, const TQObject* receiver, const char* slot, TQObject* parent, const char* name ) : int accel, const TQObject* receiver, const char* slot, TQObject* parent, const char* name ) :
KAction(ontext, onpix, accel, receiver, slot, parent, name), TDEAction(ontext, onpix, accel, receiver, slot, parent, name),
officon(offpix), officon(offpix),
onicon(onpix), onicon(onpix),
offcap(offtext), offcap(offtext),
@ -30,7 +30,7 @@ ToggleAction::ToggleAction(const TQString& ontext, const TQIconSet& onpix,
ToggleAction::ToggleAction(const TQString& ontext, const TQString& offtext, ToggleAction::ToggleAction(const TQString& ontext, const TQString& offtext,
int accel, const TQObject* receiver, const char* slot, TQObject* parent, const char* name ) : int accel, const TQObject* receiver, const char* slot, TQObject* parent, const char* name ) :
KAction(ontext, accel, receiver, slot, parent, name), TDEAction(ontext, accel, receiver, slot, parent, name),
officon(), officon(),
onicon(), onicon(),
offcap(offtext), offcap(offtext),

@ -29,7 +29,7 @@
#include <tqiconset.h> #include <tqiconset.h>
#include <kaction.h> #include <kaction.h>
class ToggleAction : public KAction { class ToggleAction : public TDEAction {
Q_OBJECT Q_OBJECT

@ -256,7 +256,7 @@
</widget> </widget>
</vbox> </vbox>
</widget> </widget>
<widget class="KListBox"> <widget class="TDEListBox">
<property name="name"> <property name="name">
<cstring>PlotList</cstring> <cstring>PlotList</cstring>
</property> </property>

@ -16,7 +16,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>SchemeList</cstring> <cstring>SchemeList</cstring>
</property> </property>

@ -80,7 +80,7 @@ void LCGenerator::createGUI()
desigLabel->setMinimumSize( TQSize( 70, 0 ) ); desigLabel->setMinimumSize( TQSize( 70, 0 ) );
DesignHLayout->addWidget( desigLabel ); DesignHLayout->addWidget( desigLabel );
DesignationIn = new KListBox( StarInfoBox, "DesignationIn" ); DesignationIn = new TDEListBox( StarInfoBox, "DesignationIn" );
DesignHLayout->addWidget( DesignationIn ); DesignHLayout->addWidget( DesignationIn );
StarInfoBoxLayout->addLayout( DesignHLayout ); StarInfoBoxLayout->addLayout( DesignHLayout );
@ -94,7 +94,7 @@ void LCGenerator::createGUI()
nameLabel->setMinimumSize( TQSize( 70, 0 ) ); nameLabel->setMinimumSize( TQSize( 70, 0 ) );
NameHLayout->addWidget( nameLabel ); NameHLayout->addWidget( nameLabel );
NameIn = new KListBox( StarInfoBox, "NameIn" ); NameIn = new TDEListBox( StarInfoBox, "NameIn" );
NameHLayout->addWidget( NameIn ); NameHLayout->addWidget( NameIn );
StarInfoBoxLayout->addLayout( NameHLayout ); StarInfoBoxLayout->addLayout( NameHLayout );

@ -36,7 +36,7 @@ class TQHBoxLayout;
class TQGridLayout; class TQGridLayout;
class TQFile; class TQFile;
class KLineEdit; class KLineEdit;
class KListBox; class TDEListBox;
class KPushButton; class KPushButton;
class TQCheckBox; class TQCheckBox;
class TQGroupBox; class TQGroupBox;
@ -92,9 +92,9 @@ private:
TQGroupBox* StarInfoBox; TQGroupBox* StarInfoBox;
TQLabel* desigLabel; TQLabel* desigLabel;
KListBox* DesignationIn; TDEListBox* DesignationIn;
TQLabel* nameLabel; TQLabel* nameLabel;
KListBox* NameIn; TDEListBox* NameIn;
TQLabel* startLabel; TQLabel* startLabel;
KLineEdit* StartDateIn; KLineEdit* StartDateIn;
TQLabel* endLabel; TQLabel* endLabel;

@ -156,7 +156,7 @@ void ObservingList::slotAddObject( SkyObject *obj ) {
//Insert object entry in FullTable and TinyTable //Insert object entry in FullTable and TinyTable
TQString smag("--"); TQString smag("--");
if ( obj->mag() < 90.0 ) smag = TQString::number( obj->mag(), 'g', 2 ); if ( obj->mag() < 90.0 ) smag = TQString::number( obj->mag(), 'g', 2 );
new KListViewItem( ui->FullTable, obj->translatedName(), new TDEListViewItem( ui->FullTable, obj->translatedName(),
obj->ra()->toHMSString(), obj->ra()->toHMSString(),
obj->dec()->toDMSString(), obj->dec()->toDMSString(),
smag, smag,

@ -385,7 +385,7 @@
<property name="margin"> <property name="margin">
<number>0</number> <number>0</number>
</property> </property>
<widget class="KListView"> <widget class="TDEListView">
<column> <column>
<property name="text"> <property name="text">
<string>Name</string> <string>Name</string>
@ -476,7 +476,7 @@
<property name="margin"> <property name="margin">
<number>0</number> <number>0</number>
</property> </property>
<widget class="KListBox"> <widget class="TDEListBox">
<property name="name"> <property name="name">
<cstring>TinyTable</cstring> <cstring>TinyTable</cstring>
</property> </property>

@ -43,7 +43,7 @@
<string>Selection filters:</string> <string>Selection filters:</string>
</property> </property>
</widget> </widget>
<widget class="KListView"> <widget class="TDEListView">
<column> <column>
<property name="text"> <property name="text">
<string>Filter</string> <string>Filter</string>
@ -170,7 +170,7 @@
<property name="name"> <property name="name">
<cstring>unnamed</cstring> <cstring>unnamed</cstring>
</property> </property>
<widget class="KListBox"> <widget class="TDEListBox">
<item> <item>
<property name="text"> <property name="text">
<string>Stars</string> <string>Stars</string>
@ -305,7 +305,7 @@
<string>Select objects in constell&amp;ation(s):</string> <string>Select objects in constell&amp;ation(s):</string>
</property> </property>
</widget> </widget>
<widget class="KListBox"> <widget class="TDEListBox">
<property name="name"> <property name="name">
<cstring>ConstellationList</cstring> <cstring>ConstellationList</cstring>
</property> </property>

@ -22,7 +22,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>Option Name</string> <string>Option Name</string>

@ -217,7 +217,7 @@ ScriptBuilder::ScriptBuilder( TQWidget *parent, const char *name )
// Modified by JM // Modified by JM
// We're using KListView instead of listbox to arrange the functions in two // We're using TDEListView instead of listbox to arrange the functions in two
// main categories: KStars and INDI. INDI is further subdivided. // main categories: KStars and INDI. INDI is further subdivided.
sb->FunctionListView->addColumn(i18n("Functions")); sb->FunctionListView->addColumn(i18n("Functions"));

@ -246,7 +246,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>ScriptListBox</cstring> <cstring>ScriptListBox</cstring>
</property> </property>
@ -507,7 +507,7 @@
<property name="orientation"> <property name="orientation">
<enum>Vertical</enum> <enum>Vertical</enum>
</property> </property>
<widget class="KListView"> <widget class="TDEListView">
<property name="name"> <property name="name">
<cstring>FunctionListView</cstring> <cstring>FunctionListView</cstring>
</property> </property>

@ -398,7 +398,7 @@
<string>Choose a category:</string> <string>Choose a category:</string>
</property> </property>
</widget> </widget>
<widget class="KListBox" row="1" column="1"> <widget class="TDEListBox" row="1" column="1">
<property name="name"> <property name="name">
<cstring>ObjectListBox</cstring> <cstring>ObjectListBox</cstring>
</property> </property>
@ -515,7 +515,7 @@
</widget> </widget>
</vbox> </vbox>
</widget> </widget>
<widget class="KListBox" row="1" column="0"> <widget class="TDEListBox" row="1" column="0">
<property name="name"> <property name="name">
<cstring>CategoryListBox</cstring> <cstring>CategoryListBox</cstring>
</property> </property>

@ -121,7 +121,7 @@
2004-09-30 Anne-Marie Mahfouf <annemarie.mahfouf@free.fr> 2004-09-30 Anne-Marie Mahfouf <annemarie.mahfouf@free.fr>
* Port to TDEConfig XT * Port to TDEConfig XT
* Port the Trainig ->Default Lectures, Settings->Keyboard Layouts, * Port the Trainig ->Default Lectures, Settings->Keyboard Layouts,
Settings->Keyboard Color Schemes to KSelectAction Settings->Keyboard Color Schemes to TDESelectAction
* Add tooltips and QWhatsThis help in Config dialogs * Add tooltips and QWhatsThis help in Config dialogs
2004-04-02 Andreas Nicolai <andreas.nicolai@gmx.net> 2004-04-02 Andreas Nicolai <andreas.nicolai@gmx.net>

@ -59,7 +59,7 @@
KTouch * KTouchPtr = NULL; KTouch * KTouchPtr = NULL;
KTouch::KTouch() KTouch::KTouch()
: KMainWindow( 0, "KTouch" ), : TDEMainWindow( 0, "KTouch" ),
m_statusWidget(NULL), m_statusWidget(NULL),
m_keyboardWidget(NULL), m_keyboardWidget(NULL),
m_trainer(NULL) m_trainer(NULL)
@ -530,7 +530,7 @@ bool KTouch::queryExit() {
void KTouch::resizeEvent(TQResizeEvent * event) { void KTouch::resizeEvent(TQResizeEvent * event) {
changeStatusbarStats(m_trainer->m_levelStats.m_correctChars, m_trainer->m_levelStats.m_totalChars, m_trainer->m_levelStats.m_words, changeStatusbarStats(m_trainer->m_levelStats.m_correctChars, m_trainer->m_levelStats.m_totalChars, m_trainer->m_levelStats.m_words,
m_trainer->m_sessionStats.m_correctChars, m_trainer->m_sessionStats.m_totalChars, m_trainer->m_sessionStats.m_words); m_trainer->m_sessionStats.m_correctChars, m_trainer->m_sessionStats.m_totalChars, m_trainer->m_sessionStats.m_words);
KMainWindow::resizeEvent(event); TDEMainWindow::resizeEvent(event);
} }
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
@ -683,26 +683,26 @@ void KTouch::initTrainingSession() {
// Creates the (standard) actions and entries in the menu. // Creates the (standard) actions and entries in the menu.
void KTouch::setupActions() { void KTouch::setupActions() {
// *** File menu *** // *** File menu ***
new KAction(i18n("&Open lecture..."), "open_lecture", 0, new TDEAction(i18n("&Open lecture..."), "open_lecture", 0,
TQT_TQOBJECT(this), TQT_SLOT(fileOpenLecture()), actionCollection(), "file_openlecture"); TQT_TQOBJECT(this), TQT_SLOT(fileOpenLecture()), actionCollection(), "file_openlecture");
new KAction(i18n("&Edit lecture..."), "edit_lecture", 0, new TDEAction(i18n("&Edit lecture..."), "edit_lecture", 0,
TQT_TQOBJECT(this), TQT_SLOT(fileEditLecture()), actionCollection(), "file_editlecture"); TQT_TQOBJECT(this), TQT_SLOT(fileEditLecture()), actionCollection(), "file_editlecture");
new KAction(i18n("&Edit color scheme..."), "edit_colors", 0, new TDEAction(i18n("&Edit color scheme..."), "edit_colors", 0,
TQT_TQOBJECT(this), TQT_SLOT(fileEditColors()), actionCollection(), "file_editcolors"); TQT_TQOBJECT(this), TQT_SLOT(fileEditColors()), actionCollection(), "file_editcolors");
// new KAction(i18n("&Edit Keyboard..."), "edit_keyboard", 0, // new TDEAction(i18n("&Edit Keyboard..."), "edit_keyboard", 0,
// TQT_TQOBJECT(this), TQT_SLOT(fileEditKeyboard()), actionCollection(), "file_editkeyboard"); // TQT_TQOBJECT(this), TQT_SLOT(fileEditKeyboard()), actionCollection(), "file_editkeyboard");
KStdAction::quit(TQT_TQOBJECT(this), TQT_SLOT(fileQuit()), actionCollection()); KStdAction::quit(TQT_TQOBJECT(this), TQT_SLOT(fileQuit()), actionCollection());
// *** Training menu *** // *** Training menu ***
new KAction(i18n("&Start New Session"), "launch", 0, new TDEAction(i18n("&Start New Session"), "launch", 0,
TQT_TQOBJECT(this), TQT_SLOT(trainingNewSession()), actionCollection(), "training_newsession"); TQT_TQOBJECT(this), TQT_SLOT(trainingNewSession()), actionCollection(), "training_newsession");
m_trainingPause = new KAction(i18n("&Pause Session"), "player_pause", 0, m_trainingPause = new TDEAction(i18n("&Pause Session"), "player_pause", 0,
TQT_TQOBJECT(this), TQT_SLOT(trainingPause()), actionCollection(), "training_pause"); TQT_TQOBJECT(this), TQT_SLOT(trainingPause()), actionCollection(), "training_pause");
new KAction(i18n("&Lecture Statistics"), "kalarm", 0, new TDEAction(i18n("&Lecture Statistics"), "kalarm", 0,
TQT_TQOBJECT(this), TQT_SLOT(trainingStatistics()), actionCollection(), "training_stats"); TQT_TQOBJECT(this), TQT_SLOT(trainingStatistics()), actionCollection(), "training_stats");
// Setup menu entries for the training lectures // Setup menu entries for the training lectures
m_defaultLectureAction = new KSelectAction(i18n("Default &Lectures"), 0, TQT_TQOBJECT(this), 0, actionCollection(), "default_lectures"); m_defaultLectureAction = new TDESelectAction(i18n("Default &Lectures"), 0, TQT_TQOBJECT(this), 0, actionCollection(), "default_lectures");
m_defaultLectureAction->setMenuAccelsEnabled(false); m_defaultLectureAction->setMenuAccelsEnabled(false);
m_defaultLectureAction->setItems(m_lectureTitles); m_defaultLectureAction->setItems(m_lectureTitles);
m_defaultLectureAction->setCurrentItem(0); m_defaultLectureAction->setCurrentItem(0);
@ -711,13 +711,13 @@ void KTouch::setupActions() {
// *** Settings menu *** // *** Settings menu ***
KStdAction::preferences(TQT_TQOBJECT(this), TQT_SLOT(optionsPreferences()), actionCollection()); KStdAction::preferences(TQT_TQOBJECT(this), TQT_SLOT(optionsPreferences()), actionCollection());
// Setup menu entries for keyboard layouts // Setup menu entries for keyboard layouts
m_keyboardLayoutAction= new KSelectAction(i18n("&Keyboard Layouts"), 0, TQT_TQOBJECT(this), 0, actionCollection(), "keyboard_layouts"); m_keyboardLayoutAction= new TDESelectAction(i18n("&Keyboard Layouts"), 0, TQT_TQOBJECT(this), 0, actionCollection(), "keyboard_layouts");
m_keyboardLayoutAction->setMenuAccelsEnabled(false); m_keyboardLayoutAction->setMenuAccelsEnabled(false);
m_keyboardLayoutAction->setItems(m_keyboardTitles); m_keyboardLayoutAction->setItems(m_keyboardTitles);
connect (m_keyboardLayoutAction, TQT_SIGNAL(activated(int)), TQT_TQOBJECT(this), TQT_SLOT(changeKeyboard(int))); connect (m_keyboardLayoutAction, TQT_SIGNAL(activated(int)), TQT_TQOBJECT(this), TQT_SLOT(changeKeyboard(int)));
// Setup menu entries for colour schemes // Setup menu entries for colour schemes
m_keyboardColorAction = new KSelectAction(i18n("&Color Schemes"), 0, TQT_TQOBJECT(this), 0, actionCollection(), "keyboard_schemes"); m_keyboardColorAction = new TDESelectAction(i18n("&Color Schemes"), 0, TQT_TQOBJECT(this), 0, actionCollection(), "keyboard_schemes");
TQStringList schemes_list; TQStringList schemes_list;
for (unsigned int i=0; i<KTouchColorScheme::m_colorSchemes.count(); ++i) for (unsigned int i=0; i<KTouchColorScheme::m_colorSchemes.count(); ++i)
schemes_list.append(KTouchColorScheme::m_colorSchemes[i].m_name); schemes_list.append(KTouchColorScheme::m_colorSchemes[i].m_name);

@ -26,9 +26,9 @@
#include <kurl.h> #include <kurl.h>
class TQLabel; class TQLabel;
class KToggleAction; class TDEToggleAction;
class KActionMenu; class TDEActionMenu;
class KSelectAction; class TDESelectAction;
class KTouchStatus; class KTouchStatus;
class KTouchSlideLine; class KTouchSlideLine;
@ -48,7 +48,7 @@ class KTouchPrefColorsLayout;
/// It handles the lecture, training data, status and all other widgets that are /// It handles the lecture, training data, status and all other widgets that are
/// needed to get the program running. Since all special tasks are delegated to the /// needed to get the program running. Since all special tasks are delegated to the
/// appropriate widgets and classes, the remaining code in KTouch is basically the /// appropriate widgets and classes, the remaining code in KTouch is basically the
/// startup and KAction stuff.<p> /// startup and TDEAction stuff.<p>
/// A word about dialogs. All dialogs in this program are not created by default. /// A word about dialogs. All dialogs in this program are not created by default.
/// Instead they are created "on first use". This /// Instead they are created "on first use". This
/// saves memory (because we don't need them always) and the startup speed increases.<p> /// saves memory (because we don't need them always) and the startup speed increases.<p>
@ -56,7 +56,7 @@ class KTouchPrefColorsLayout;
/// typed char. It delegates the character to the trainer /// typed char. It delegates the character to the trainer
/// (KTouchTrainer), which will then process it. So the heavy work lies in the trainer /// (KTouchTrainer), which will then process it. So the heavy work lies in the trainer
/// object and all the widgets. /// object and all the widgets.
class KTouch : public KMainWindow { class KTouch : public TDEMainWindow {
Q_OBJECT Q_OBJECT
public: public:
@ -148,11 +148,11 @@ class KTouch : public KMainWindow {
void updateKeyboardActionCheck(); void updateKeyboardActionCheck();
// *** Public member variables *** // *** Public member variables ***
KAction *m_trainingPause; ///< Action for "pause training session". TDEAction *m_trainingPause; ///< Action for "pause training session".
KSelectAction *m_keyboardLayoutAction; TDESelectAction *m_keyboardLayoutAction;
KSelectAction *m_keyboardColorAction; TDESelectAction *m_keyboardColorAction;
KSelectAction *m_defaultLectureAction; TDESelectAction *m_defaultLectureAction;
KTouchStatus *m_statusWidget; ///< Pointer to the status widget on top of the main widget. KTouchStatus *m_statusWidget; ///< Pointer to the status widget on top of the main widget.
KTouchSlideLine *m_slideLineWidget; ///< Pointer to the sliding line widget. KTouchSlideLine *m_slideLineWidget; ///< Pointer to the sliding line widget.

@ -60,7 +60,7 @@ bool KTouchKeyboardEditor::startEditor(const KURL& url) {
void KTouchKeyboardEditor::fontBtnClicked() { void KTouchKeyboardEditor::fontBtnClicked() {
//kdDebug() << "Fontbutton clicked" << endl; //kdDebug() << "Fontbutton clicked" << endl;
TQFont f; TQFont f;
if (KFontDialog::getFont(f, false, this, true)==TQDialog::Accepted) { if (TDEFontDialog::getFont(f, false, this, true)==TQDialog::Accepted) {
m_keyboard.m_fontSuggestions = f.toString(); m_keyboard.m_fontSuggestions = f.toString();
// update font and keyboard display // update font and keyboard display
titleEdit->setFont(f); titleEdit->setFont(f);

@ -81,7 +81,7 @@ bool KTouchLectureEditor::startEditor(const KURL& url) {
void KTouchLectureEditor::fontBtnClicked() { void KTouchLectureEditor::fontBtnClicked() {
TQFont f(m_lecture.m_fontSuggestions); TQFont f(m_lecture.m_fontSuggestions);
if (KFontDialog::getFont(f, false, this, true)==TQDialog::Accepted) { if (TDEFontDialog::getFont(f, false, this, true)==TQDialog::Accepted) {
linesTextEdit->setFont(f); linesTextEdit->setFont(f);
lectureCommentEdit->setFont(f); lectureCommentEdit->setFont(f);
levelCommentEdit->setFont(f); levelCommentEdit->setFont(f);

@ -115,7 +115,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>Levels</string> <string>Levels</string>

@ -278,7 +278,7 @@
</size> </size>
</property> </property>
</spacer> </spacer>
<widget class="KFontRequester" row="2" column="0" rowspan="1" colspan="2"> <widget class="TDEFontRequester" row="2" column="0" rowspan="1" colspan="2">
<property name="name"> <property name="name">
<cstring>kcfg_Font</cstring> <cstring>kcfg_Font</cstring>
</property> </property>

@ -102,7 +102,7 @@
<string>Font for keys on keyboard:</string> <string>Font for keys on keyboard:</string>
</property> </property>
</widget> </widget>
<widget class="KFontRequester"> <widget class="TDEFontRequester">
<property name="name"> <property name="name">
<cstring>kcfg_KeyboardFont</cstring> <cstring>kcfg_KeyboardFont</cstring>
</property> </property>

@ -120,25 +120,25 @@ MainWindow::~MainWindow()
void MainWindow::setupActions() void MainWindow::setupActions()
{ {
KActionCollection *ac = actionCollection(); // abbreviation TDEActionCollection *ac = actionCollection(); // abbreviation
// File actions // File actions
KStdAction::openNew(TQT_TQOBJECT(this), TQT_SLOT(slotNewFile()), ac); KStdAction::openNew(TQT_TQOBJECT(this), TQT_SLOT(slotNewFile()), ac);
openExAction = new KAction(i18n("Open Exa&mples..."), "bookmark_folder", CTRL+Key_E, TQT_TQOBJECT(this), TQT_SLOT(slotOpenExample()), ac, "open_examples"); openExAction = new TDEAction(i18n("Open Exa&mples..."), "bookmark_folder", CTRL+Key_E, TQT_TQOBJECT(this), TQT_SLOT(slotOpenExample()), ac, "open_examples");
KStdAction::open(TQT_TQOBJECT(this), TQT_SLOT(slotOpenFile()), ac); KStdAction::open(TQT_TQOBJECT(this), TQT_SLOT(slotOpenFile()), ac);
m_recentFiles = KStdAction::openRecent(TQT_TQOBJECT(this), TQT_SLOT(slotOpenFile(const KURL&)), ac); m_recentFiles = KStdAction::openRecent(TQT_TQOBJECT(this), TQT_SLOT(slotOpenFile(const KURL&)), ac);
KStdAction::save(TQT_TQOBJECT(this), TQT_SLOT(slotSaveFile()), ac); KStdAction::save(TQT_TQOBJECT(this), TQT_SLOT(slotSaveFile()), ac);
KStdAction::saveAs(TQT_TQOBJECT(this), TQT_SLOT(slotSaveAs()), ac); KStdAction::saveAs(TQT_TQOBJECT(this), TQT_SLOT(slotSaveAs()), ac);
new KAction(i18n("Save &Canvas..."), 0, 0, TQT_TQOBJECT(this), TQT_SLOT(slotSaveCanvas()), ac, "save_canvas"); new TDEAction(i18n("Save &Canvas..."), 0, 0, TQT_TQOBJECT(this), TQT_SLOT(slotSaveCanvas()), ac, "save_canvas");
speed = new KSelectAction(i18n("Execution Speed"), 0, ALT+Key_S, TQT_TQOBJECT(this), TQT_SLOT( slotChangeSpeed() ), ac, "speed"); speed = new TDESelectAction(i18n("Execution Speed"), 0, ALT+Key_S, TQT_TQOBJECT(this), TQT_SLOT( slotChangeSpeed() ), ac, "speed");
TQStringList speeds; speeds << i18n("Full Speed") << i18n("Slow") << i18n("Slower") << i18n("Slowest"); TQStringList speeds; speeds << i18n("Full Speed") << i18n("Slow") << i18n("Slower") << i18n("Slowest");
speed->setItems(speeds); speed->setItems(speeds);
speed->setCurrentItem(0); speed->setCurrentItem(0);
run = new KAction(i18n("&Execute Commands"), "gear", ALT+Key_Return, TQT_TQOBJECT(this), TQT_SLOT( slotExecute() ), ac, "run"); run = new TDEAction(i18n("&Execute Commands"), "gear", ALT+Key_Return, TQT_TQOBJECT(this), TQT_SLOT( slotExecute() ), ac, "run");
pause = new KToggleAction(i18n("Pause E&xecution"), "player_pause", Key_Pause, TQT_TQOBJECT(this), TQT_SLOT( slotPauseExecution() ), ac, "pause"); pause = new TDEToggleAction(i18n("Pause E&xecution"), "player_pause", Key_Pause, TQT_TQOBJECT(this), TQT_SLOT( slotPauseExecution() ), ac, "pause");
pause->setChecked(false); pause->setChecked(false);
pause->setEnabled(false); pause->setEnabled(false);
stop = new KAction(i18n("Stop E&xecution"), "stop", Key_Escape, TQT_TQOBJECT(this), TQT_SLOT( slotAbortExecution() ), ac, "stop"); stop = new TDEAction(i18n("Stop E&xecution"), "stop", Key_Escape, TQT_TQOBJECT(this), TQT_SLOT( slotAbortExecution() ), ac, "stop");
stop->setEnabled(false); stop->setEnabled(false);
KStdAction::print(TQT_TQOBJECT(this), TQT_SLOT(slotPrint()), ac); KStdAction::print(TQT_TQOBJECT(this), TQT_SLOT(slotPrint()), ac);
KStdAction::quit(TQT_TQOBJECT(this), TQT_SLOT(close()), ac); KStdAction::quit(TQT_TQOBJECT(this), TQT_SLOT(close()), ac);
@ -151,31 +151,31 @@ void MainWindow::setupActions()
KStdAction::paste(TQT_TQOBJECT(this), TQT_SLOT(slotPaste()), ac); KStdAction::paste(TQT_TQOBJECT(this), TQT_SLOT(slotPaste()), ac);
KStdAction::selectAll(TQT_TQOBJECT(this), TQT_SLOT(slotSelectAll()), ac); KStdAction::selectAll(TQT_TQOBJECT(this), TQT_SLOT(slotSelectAll()), ac);
KStdAction::deselect(TQT_TQOBJECT(this), TQT_SLOT(slotClearSelection()), ac); KStdAction::deselect(TQT_TQOBJECT(this), TQT_SLOT(slotClearSelection()), ac);
new KToggleAction(i18n("Toggle Insert"), Key_Insert, TQT_TQOBJECT(this), TQT_SLOT(slotToggleInsert()), ac, "set_insert"); new TDEToggleAction(i18n("Toggle Insert"), Key_Insert, TQT_TQOBJECT(this), TQT_SLOT(slotToggleInsert()), ac, "set_insert");
KStdAction::find(TQT_TQOBJECT(this), TQT_SLOT(slotFind()), ac); KStdAction::find(TQT_TQOBJECT(this), TQT_SLOT(slotFind()), ac);
KStdAction::findNext(TQT_TQOBJECT(this), TQT_SLOT(slotFindNext()), ac); KStdAction::findNext(TQT_TQOBJECT(this), TQT_SLOT(slotFindNext()), ac);
KStdAction::findPrev(TQT_TQOBJECT(this), TQT_SLOT(slotFindPrevious()), ac); KStdAction::findPrev(TQT_TQOBJECT(this), TQT_SLOT(slotFindPrevious()), ac);
KStdAction::replace(TQT_TQOBJECT(this), TQT_SLOT(slotReplace()), ac); KStdAction::replace(TQT_TQOBJECT(this), TQT_SLOT(slotReplace()), ac);
// View actions // View actions
new KToggleAction(i18n("Show &Line Numbers"), 0, Key_F11, TQT_TQOBJECT(this), TQT_SLOT(slotToggleLineNumbers()), ac, "line_numbers"); new TDEToggleAction(i18n("Show &Line Numbers"), 0, Key_F11, TQT_TQOBJECT(this), TQT_SLOT(slotToggleLineNumbers()), ac, "line_numbers");
m_fullscreen = KStdAction::fullScreen(TQT_TQOBJECT(this), TQT_SLOT(slotToggleFullscreen()), ac, this, "full_screen"); m_fullscreen = KStdAction::fullScreen(TQT_TQOBJECT(this), TQT_SLOT(slotToggleFullscreen()), ac, this, "full_screen");
m_fullscreen->setChecked(b_fullscreen); m_fullscreen->setChecked(b_fullscreen);
// Tools actions // Tools actions
colorpicker = new KToggleAction(i18n("&Color Picker"), "colorize", ALT+Key_C, TQT_TQOBJECT(this), TQT_SLOT(slotColorPicker()), ac, "color_picker"); colorpicker = new TDEToggleAction(i18n("&Color Picker"), "colorize", ALT+Key_C, TQT_TQOBJECT(this), TQT_SLOT(slotColorPicker()), ac, "color_picker");
new KAction(i18n("&Indent"), "indent", CTRL+Key_I, TQT_TQOBJECT(this), TQT_SLOT(slotIndent()), ac, "edit_indent"); new TDEAction(i18n("&Indent"), "indent", CTRL+Key_I, TQT_TQOBJECT(this), TQT_SLOT(slotIndent()), ac, "edit_indent");
new KAction(i18n("&Unindent"), "unindent", CTRL+SHIFT+Key_I, TQT_TQOBJECT(this), TQT_SLOT(slotUnIndent()), ac, "edit_unindent"); new TDEAction(i18n("&Unindent"), "unindent", CTRL+SHIFT+Key_I, TQT_TQOBJECT(this), TQT_SLOT(slotUnIndent()), ac, "edit_unindent");
new KAction(i18n("Cl&ean Indentation"), 0, 0, TQT_TQOBJECT(this), TQT_SLOT(slotCleanIndent()), ac, "edit_cleanIndent"); new TDEAction(i18n("Cl&ean Indentation"), 0, 0, TQT_TQOBJECT(this), TQT_SLOT(slotCleanIndent()), ac, "edit_cleanIndent");
new KAction(i18n("Co&mment"), 0, CTRL+Key_D, TQT_TQOBJECT(this), TQT_SLOT(slotComment()), ac, "edit_comment"); new TDEAction(i18n("Co&mment"), 0, CTRL+Key_D, TQT_TQOBJECT(this), TQT_SLOT(slotComment()), ac, "edit_comment");
new KAction(i18n("Unc&omment"), 0, CTRL+SHIFT+Key_D, TQT_TQOBJECT(this), TQT_SLOT(slotUnComment()), ac, "edit_uncomment"); new TDEAction(i18n("Unc&omment"), 0, CTRL+SHIFT+Key_D, TQT_TQOBJECT(this), TQT_SLOT(slotUnComment()), ac, "edit_uncomment");
// Settings actions // Settings actions
KStdAction::preferences( TQT_TQOBJECT(this), TQT_SLOT(slotSettings()), ac ); KStdAction::preferences( TQT_TQOBJECT(this), TQT_SLOT(slotSettings()), ac );
new KAction(i18n("&Configure Editor..."), "configure", 0, TQT_TQOBJECT(this), TQT_SLOT(slotEditor()), ac, "set_confdlg"); new TDEAction(i18n("&Configure Editor..."), "configure", 0, TQT_TQOBJECT(this), TQT_SLOT(slotEditor()), ac, "set_confdlg");
// Help actions // Help actions
ContextHelp = new KAction(0, 0, Key_F2, TQT_TQOBJECT(this), TQT_SLOT(slotContextHelp()), ac, "context_help"); ContextHelp = new TDEAction(0, 0, Key_F2, TQT_TQOBJECT(this), TQT_SLOT(slotContextHelp()), ac, "context_help");
slotContextHelpUpdate(); // this sets the label of this action slotContextHelpUpdate(); // this sets the label of this action
// other // other
@ -654,7 +654,7 @@ void MainWindow::slotMessageDialog(TQString text)
void MainWindow::slotEditor() void MainWindow::slotEditor()
{ {
KAction *a = editor->actionCollection()->action("set_confdlg"); TDEAction *a = editor->actionCollection()->action("set_confdlg");
a->activate(); a->activate();
} }
@ -716,68 +716,68 @@ void MainWindow::slotClearSelection()
void MainWindow::slotFind() void MainWindow::slotFind()
{ {
KAction *a = editor->actionCollection()->action("edit_find"); TDEAction *a = editor->actionCollection()->action("edit_find");
a->activate(); a->activate();
} }
void MainWindow::slotFindNext() void MainWindow::slotFindNext()
{ {
KAction *a = editor->actionCollection()->action("edit_find_next"); TDEAction *a = editor->actionCollection()->action("edit_find_next");
a->activate(); a->activate();
} }
void MainWindow::slotFindPrevious() void MainWindow::slotFindPrevious()
{ {
KAction *a = editor->actionCollection()->action("edit_find_prev"); TDEAction *a = editor->actionCollection()->action("edit_find_prev");
a->activate(); a->activate();
} }
void MainWindow::slotReplace() void MainWindow::slotReplace()
{ {
KAction* a = editor->actionCollection()->action("edit_replace"); TDEAction* a = editor->actionCollection()->action("edit_replace");
a->activate(); a->activate();
} }
void MainWindow::slotToggleInsert() void MainWindow::slotToggleInsert()
{ {
KToggleAction *a = dynamic_cast<KToggleAction*>(editor->actionCollection()->action("set_insert")); TDEToggleAction *a = dynamic_cast<TDEToggleAction*>(editor->actionCollection()->action("set_insert"));
a->activate(); a->activate();
if (a) statusBar()->changeItem(a->isChecked() ? i18n(" OVR ") : i18n(" INS "), IDS_INS); if (a) statusBar()->changeItem(a->isChecked() ? i18n(" OVR ") : i18n(" INS "), IDS_INS);
} }
void MainWindow::slotIndent() void MainWindow::slotIndent()
{ {
KAction *a = editor->actionCollection()->action("tools_indent"); TDEAction *a = editor->actionCollection()->action("tools_indent");
a->activate(); a->activate();
} }
void MainWindow::slotUnIndent() void MainWindow::slotUnIndent()
{ {
KAction *a = editor->actionCollection()->action("tools_unindent"); TDEAction *a = editor->actionCollection()->action("tools_unindent");
a->activate(); a->activate();
} }
void MainWindow::slotCleanIndent() void MainWindow::slotCleanIndent()
{ {
KAction *a = editor->actionCollection()->action("tools_cleanIndent"); TDEAction *a = editor->actionCollection()->action("tools_cleanIndent");
a->activate(); a->activate();
} }
void MainWindow::slotComment() void MainWindow::slotComment()
{ {
KAction *a = editor->actionCollection()->action("tools_comment"); TDEAction *a = editor->actionCollection()->action("tools_comment");
a->activate(); a->activate();
} }
void MainWindow::slotUnComment() void MainWindow::slotUnComment()
{ {
KAction *a = editor->actionCollection()->action("tools_uncomment"); TDEAction *a = editor->actionCollection()->action("tools_uncomment");
a->activate(); a->activate();
} }
void MainWindow::slotToggleLineNumbers() void MainWindow::slotToggleLineNumbers()
{ {
KToggleAction *a = dynamic_cast<KToggleAction*>( editor->actionCollection()->action("view_line_numbers") ); TDEToggleAction *a = dynamic_cast<TDEToggleAction*>( editor->actionCollection()->action("view_line_numbers") );
a->activate(); a->activate();
} }
@ -817,7 +817,7 @@ bool MainWindow::event(TQEvent* e)
{ {
// executes updateFullScreen() after a ShowFullScreen or ShowNormal event got triggered // executes updateFullScreen() after a ShowFullScreen or ShowNormal event got triggered
if (e->type() == TQEvent::ShowFullScreen || e->type() == TQEvent::ShowNormal) updateFullScreen(); if (e->type() == TQEvent::ShowFullScreen || e->type() == TQEvent::ShowNormal) updateFullScreen();
return KMainWindow::event(e); return TDEMainWindow::event(e);
} }
void MainWindow::updateFullScreen() void MainWindow::updateFullScreen()

@ -40,7 +40,7 @@
#include "parser.h" #include "parser.h"
class KRecentFilesAction; class TDERecentFilesAction;
class MainWindow : public KParts::MainWindow class MainWindow : public KParts::MainWindow
@ -142,17 +142,17 @@ class MainWindow : public KParts::MainWindow
ColorPicker *picker; ColorPicker *picker;
RestartOrBack *restartOrBackDialog; RestartOrBack *restartOrBackDialog;
KAction *run; TDEAction *run;
KAction *stop; TDEAction *stop;
KAction *openExAction; TDEAction *openExAction;
KAction *openFileAction; TDEAction *openFileAction;
KAction *newAction; TDEAction *newAction;
KAction *ContextHelp; TDEAction *ContextHelp;
KToggleAction *pause; TDEToggleAction *pause;
KToggleAction *m_fullscreen; TDEToggleAction *m_fullscreen;
KToggleAction *colorpicker; TDEToggleAction *colorpicker;
KSelectAction *speed; TDESelectAction *speed;
KRecentFilesAction *m_recentFiles; TDERecentFilesAction *m_recentFiles;
KTextEditor::View *view() const { return editor; } KTextEditor::View *view() const { return editor; }
KTextEditor::EditInterface *editorInterface; KTextEditor::EditInterface *editorInterface;

@ -48,7 +48,7 @@
int KVerbosApp::kverbosCounter = 0; int KVerbosApp::kverbosCounter = 0;
KVerbosApp::KVerbosApp(TQWidget* , const char* name):KMainWindow (0, name) KVerbosApp::KVerbosApp(TQWidget* , const char* name):TDEMainWindow (0, name)
{ {
// als erstes das Logo starten // als erstes das Logo starten
TDEStartupLogo* start_logo = new TDEStartupLogo(0); TDEStartupLogo* start_logo = new TDEStartupLogo(0);
@ -116,11 +116,11 @@ KVerbosApp::~KVerbosApp()
void KVerbosApp::initActions() void KVerbosApp::initActions()
{ {
fileNewWindow = new KAction(i18n("New &Window"), "window_new.png", 0, TQT_TQOBJECT(this), TQT_SLOT(slotFileNewWindow()), actionCollection(),"file_new_window"); fileNewWindow = new TDEAction(i18n("New &Window"), "window_new.png", 0, TQT_TQOBJECT(this), TQT_SLOT(slotFileNewWindow()), actionCollection(),"file_new_window");
fileNew = KStdAction::openNew(TQT_TQOBJECT(this), TQT_SLOT(slotFileNew()), actionCollection()); fileNew = KStdAction::openNew(TQT_TQOBJECT(this), TQT_SLOT(slotFileNew()), actionCollection());
fileOpen = KStdAction::open(TQT_TQOBJECT(this), TQT_SLOT(slotFileOpen()), actionCollection()); fileOpen = KStdAction::open(TQT_TQOBJECT(this), TQT_SLOT(slotFileOpen()), actionCollection());
fileOpenRecent = KStdAction::openRecent(TQT_TQOBJECT(this), TQT_SLOT(slotFileOpenRecent(const KURL&)), actionCollection()); fileOpenRecent = KStdAction::openRecent(TQT_TQOBJECT(this), TQT_SLOT(slotFileOpenRecent(const KURL&)), actionCollection());
fileOpenStandard = new KAction(i18n("Open &Standard Verb File"), "fileopen.png", 0, TQT_TQOBJECT(this), TQT_SLOT(slotFileOpenStandard()), actionCollection(),"file_open_standard"); fileOpenStandard = new TDEAction(i18n("Open &Standard Verb File"), "fileopen.png", 0, TQT_TQOBJECT(this), TQT_SLOT(slotFileOpenStandard()), actionCollection(),"file_open_standard");
fileSave = KStdAction::save(TQT_TQOBJECT(this), TQT_SLOT(slotFileSave()), actionCollection()); fileSave = KStdAction::save(TQT_TQOBJECT(this), TQT_SLOT(slotFileSave()), actionCollection());
fileSaveAs = KStdAction::saveAs(TQT_TQOBJECT(this), TQT_SLOT(slotFileSaveAs()), actionCollection()); fileSaveAs = KStdAction::saveAs(TQT_TQOBJECT(this), TQT_SLOT(slotFileSaveAs()), actionCollection());
fileClose = KStdAction::close(TQT_TQOBJECT(this), TQT_SLOT(slotFileClose()), actionCollection()); fileClose = KStdAction::close(TQT_TQOBJECT(this), TQT_SLOT(slotFileClose()), actionCollection());
@ -129,12 +129,12 @@ void KVerbosApp::initActions()
editCut = KStdAction::cut(TQT_TQOBJECT(this), TQT_SLOT(slotEditCut()), actionCollection()); editCut = KStdAction::cut(TQT_TQOBJECT(this), TQT_SLOT(slotEditCut()), actionCollection());
editCopy = KStdAction::copy(TQT_TQOBJECT(this), TQT_SLOT(slotEditCopy()), actionCollection()); editCopy = KStdAction::copy(TQT_TQOBJECT(this), TQT_SLOT(slotEditCopy()), actionCollection());
editPaste = KStdAction::paste(TQT_TQOBJECT(this), TQT_SLOT(slotEditPaste()), actionCollection()); editPaste = KStdAction::paste(TQT_TQOBJECT(this), TQT_SLOT(slotEditPaste()), actionCollection());
editErfassen = new KAction(i18n("E&nter New Verb..."), 0, 0, TQT_TQOBJECT(this), TQT_SLOT(slotEditErfassen()), actionCollection(),"edit_erfassen"); editErfassen = new TDEAction(i18n("E&nter New Verb..."), 0, 0, TQT_TQOBJECT(this), TQT_SLOT(slotEditErfassen()), actionCollection(),"edit_erfassen");
editBearbeiten = new KAction(i18n("&Edit Verb List..."), 0, 0, TQT_TQOBJECT(this), TQT_SLOT(slotEditBearbeiten()), actionCollection(), "edit_bearbeiten"); editBearbeiten = new TDEAction(i18n("&Edit Verb List..."), 0, 0, TQT_TQOBJECT(this), TQT_SLOT(slotEditBearbeiten()), actionCollection(), "edit_bearbeiten");
settingOptions = new KAction(i18n("&Configure KVerbos..."), 0, 0, TQT_TQOBJECT(this), TQT_SLOT(slotSettingsOptions()), actionCollection(), "settings_options"); settingOptions = new TDEAction(i18n("&Configure KVerbos..."), 0, 0, TQT_TQOBJECT(this), TQT_SLOT(slotSettingsOptions()), actionCollection(), "settings_options");
userUsername = new KAction(i18n("&Username..."), 0, 0, TQT_TQOBJECT(this), TQT_SLOT(slotSettingsUsername()), actionCollection(), "user_username"); userUsername = new TDEAction(i18n("&Username..."), 0, 0, TQT_TQOBJECT(this), TQT_SLOT(slotSettingsUsername()), actionCollection(), "user_username");
userResults = new KAction(i18n("&Results"), 0, 0, TQT_TQOBJECT(this), TQT_SLOT(slotUserResults()), actionCollection(), "user_results"); userResults = new TDEAction(i18n("&Results"), 0, 0, TQT_TQOBJECT(this), TQT_SLOT(slotUserResults()), actionCollection(), "user_results");
fileNewWindow->setToolTip(i18n("Opens a new application window")); fileNewWindow->setToolTip(i18n("Opens a new application window"));
fileOpenStandard->setToolTip(i18n("Opens the standard KVerbos verb file")); fileOpenStandard->setToolTip(i18n("Opens the standard KVerbos verb file"));
@ -500,7 +500,7 @@ void KVerbosApp::slotFileQuit()
saveOptions(); saveOptions();
// close the first window, the list makes the next one the first again. // close the first window, the list makes the next one the first again.
// This ensures that queryClose() is called on each window to ask for closing // This ensures that queryClose() is called on each window to ask for closing
KMainWindow* w; TDEMainWindow* w;
// In der Dokumentation konnte ich leider nicht finden, wozu diese memberliste gut ist. // In der Dokumentation konnte ich leider nicht finden, wozu diese memberliste gut ist.
if(memberList) if(memberList)
{ {

@ -45,16 +45,16 @@ class KFeederControl;
* window and reads the config file as well as providing a menubar, toolbar * window and reads the config file as well as providing a menubar, toolbar
* and statusbar. An instance of KVerbosView creates your center view, which is connected * and statusbar. An instance of KVerbosView creates your center view, which is connected
* to the window's Doc object. * to the window's Doc object.
* KVerbosApp reimplements the methods that KMainWindow provides for main window handling and supports * KVerbosApp reimplements the methods that TDEMainWindow provides for main window handling and supports
* full session management as well as using KActions. * full session management as well as using TDEActions.
* @see KMainWindow * @see TDEMainWindow
* @see TDEApplication * @see TDEApplication
* @see TDEConfig * @see TDEConfig
* *
* @author Source Framework Automatically Generated by KDevelop, (c) The KDevelop Team. * @author Source Framework Automatically Generated by KDevelop, (c) The KDevelop Team.
* @version KDevelop version 1.2 code generation * @version KDevelop version 1.2 code generation
*/ */
class KVerbosApp : public KMainWindow class KVerbosApp : public TDEMainWindow
{ {
Q_OBJECT Q_OBJECT
@ -86,7 +86,7 @@ class KVerbosApp : public KMainWindow
/** read general Options again and initialize all variables like the recent file list /** read general Options again and initialize all variables like the recent file list
*/ */
void readOptions(); void readOptions();
/** initializes the KActions of the application */ /** initializes the TDEActions of the application */
void initActions(); void initActions();
/** sets up the statusbar for the main window by initialzing a statuslabel. /** sets up the statusbar for the main window by initialzing a statuslabel.
*/ */
@ -221,26 +221,26 @@ class KVerbosApp : public KMainWindow
*/ */
KVerbosDoc *doc; KVerbosDoc *doc;
// KAction pointers to enable/disable actions // TDEAction pointers to enable/disable actions
KPopupMenu* menuUser; TDEPopupMenu* menuUser;
KAction* fileNewWindow; TDEAction* fileNewWindow;
KAction* fileNew; TDEAction* fileNew;
KAction* fileOpen; TDEAction* fileOpen;
KRecentFilesAction* fileOpenRecent; TDERecentFilesAction* fileOpenRecent;
KAction* fileOpenStandard; TDEAction* fileOpenStandard;
KAction* fileSave; TDEAction* fileSave;
KAction* fileSaveAs; TDEAction* fileSaveAs;
KAction* fileClose; TDEAction* fileClose;
KAction* filePrint; TDEAction* filePrint;
KAction* fileQuit; TDEAction* fileQuit;
KAction* editCut; TDEAction* editCut;
KAction* editCopy; TDEAction* editCopy;
KAction* editPaste; TDEAction* editPaste;
KAction* editErfassen; TDEAction* editErfassen;
KAction* editBearbeiten; TDEAction* editBearbeiten;
KAction* settingOptions; TDEAction* settingOptions;
KAction* userUsername; TDEAction* userUsername;
KAction* userResults; TDEAction* userResults;

@ -41,7 +41,7 @@ class KVerbosUser;
* *
* The KVerbosDoc class provides a document object that can be used in conjunction with * The KVerbosDoc class provides a document object that can be used in conjunction with
* the classes KVerbosApp and KVerbosView to create a document-view model for standard KDE * the classes KVerbosApp and KVerbosView to create a document-view model for standard KDE
* applications based on TDEApplication and KMainWindow. Thereby, the document object * applications based on TDEApplication and TDEMainWindow. Thereby, the document object
* is created by the KVerbosApp instance and contains the document structure with the * is created by the KVerbosApp instance and contains the document structure with the
* according methods for manipulation of the document data by KVerbosView objects. Also, * according methods for manipulation of the document data by KVerbosView objects. Also,
* KVerbosDoc contains the methods for serialization of the document data from and to files. * KVerbosDoc contains the methods for serialization of the document data from and to files.

@ -22,7 +22,7 @@
<property name="spacing"> <property name="spacing">
<number>6</number> <number>6</number>
</property> </property>
<widget class="KFontRequester" row="0" column="1"> <widget class="TDEFontRequester" row="0" column="1">
<property name="name"> <property name="name">
<cstring>kcfg_TableFont</cstring> <cstring>kcfg_TableFont</cstring>
</property> </property>
@ -38,7 +38,7 @@
<cstring>kcfg_TableFont</cstring> <cstring>kcfg_TableFont</cstring>
</property> </property>
</widget> </widget>
<widget class="KFontRequester" row="1" column="1"> <widget class="TDEFontRequester" row="1" column="1">
<property name="name"> <property name="name">
<cstring>kcfg_IPAFont</cstring> <cstring>kcfg_IPAFont</cstring>
</property> </property>

@ -37,7 +37,7 @@
#include <klocale.h> #include <klocale.h>
EntryDlg::EntryDlg( EntryDlg::EntryDlg(
KMainWindow *main, TDEMainWindow *main,
kvoctrainDoc *doc, kvoctrainDoc *doc,
bool multi_sel, bool multi_sel,
bool origin, bool origin,

@ -39,7 +39,7 @@
class LangSet; class LangSet;
class TQTabWidget; class TQTabWidget;
class KMainWindow; class TDEMainWindow;
class kvoctrainDoc; class kvoctrainDoc;
class EntryDlg : public KDialogBase class EntryDlg : public KDialogBase
@ -54,7 +54,7 @@ public:
enum EnableType {EnableAll, EnableOnlyCommon, EnableNone, EnableOnlyOriginal }; enum EnableType {EnableAll, EnableOnlyCommon, EnableNone, EnableOnlyOriginal };
EntryDlg EntryDlg
( KMainWindow *main, ( TDEMainWindow *main,
kvoctrainDoc *doc, kvoctrainDoc *doc,
bool multi_sel, bool multi_sel,
bool origin, bool origin,
@ -214,7 +214,7 @@ protected:
TQTabWidget *tabber; TQTabWidget *tabber;
vector<TQTableSelection> selections; vector<TQTableSelection> selections;
KMainWindow *mainwin; TDEMainWindow *mainwin;
TQSize oldMainSize; TQSize oldMainSize;
TQPoint oldMainPos; TQPoint oldMainPos;
bool docked; bool docked;

@ -41,7 +41,7 @@
#include "prefs.h" #include "prefs.h"
kvoctrainApp::kvoctrainApp(TQWidget *parent, const char *name) kvoctrainApp::kvoctrainApp(TQWidget *parent, const char *name)
: KMainWindow(parent, name) : TDEMainWindow(parent, name)
{ {
doc = 0; doc = 0;
view = 0; view = 0;
@ -106,17 +106,17 @@ void kvoctrainApp::initActions()
fileOpen->setWhatsThis(i18n("Opens an existing vocabulary document")); fileOpen->setWhatsThis(i18n("Opens an existing vocabulary document"));
fileOpen->setToolTip(fileOpen->whatsThis()); fileOpen->setToolTip(fileOpen->whatsThis());
fileOpenExample = new KAction(i18n("Open &Example..."), "fileopen", 0, TQT_TQOBJECT(this), TQT_SLOT(slotFileOpenExample()), actionCollection(), "file_open_example"); fileOpenExample = new TDEAction(i18n("Open &Example..."), "fileopen", 0, TQT_TQOBJECT(this), TQT_SLOT(slotFileOpenExample()), actionCollection(), "file_open_example");
fileOpen->setWhatsThis(i18n("Open a vocabulary document")); fileOpen->setWhatsThis(i18n("Open a vocabulary document"));
fileOpen->setToolTip(fileOpen->whatsThis()); fileOpen->setToolTip(fileOpen->whatsThis());
fileGHNS = new KAction(i18n("&Get New Vocabularies..."), "knewstuff", CTRL+Key_G, TQT_TQOBJECT(this), TQT_SLOT(slotGHNS()), actionCollection(), "file_ghns"); fileGHNS = new TDEAction(i18n("&Get New Vocabularies..."), "knewstuff", CTRL+Key_G, TQT_TQOBJECT(this), TQT_SLOT(slotGHNS()), actionCollection(), "file_ghns");
fileGHNS->setWhatsThis(i18n("Downloads new vocabularies")); fileGHNS->setWhatsThis(i18n("Downloads new vocabularies"));
fileGHNS->setToolTip(fileGHNS->whatsThis()); fileGHNS->setToolTip(fileGHNS->whatsThis());
fileOpenRecent = KStdAction::openRecent(TQT_TQOBJECT(this), TQT_SLOT(slotFileOpenRecent(const KURL&)), actionCollection()); fileOpenRecent = KStdAction::openRecent(TQT_TQOBJECT(this), TQT_SLOT(slotFileOpenRecent(const KURL&)), actionCollection());
fileMerge = new KAction(i18n("&Merge..."), 0, 0, TQT_TQOBJECT(this), TQT_SLOT(slotFileMerge()), actionCollection(), "file_merge"); fileMerge = new TDEAction(i18n("&Merge..."), 0, 0, TQT_TQOBJECT(this), TQT_SLOT(slotFileMerge()), actionCollection(), "file_merge");
fileMerge->setWhatsThis(i18n("Merge an existing vocabulary document with the current one")); fileMerge->setWhatsThis(i18n("Merge an existing vocabulary document with the current one"));
fileMerge->setToolTip(fileOpen->whatsThis()); fileMerge->setToolTip(fileOpen->whatsThis());
@ -156,52 +156,52 @@ void kvoctrainApp::initActions()
editSearchFromClipboard->setWhatsThis(i18n("Search for the clipboard contents in the vocabulary")); editSearchFromClipboard->setWhatsThis(i18n("Search for the clipboard contents in the vocabulary"));
editSearchFromClipboard->setToolTip(editSearchFromClipboard->whatsThis()); editSearchFromClipboard->setToolTip(editSearchFromClipboard->whatsThis());
editAppend = new KAction(i18n("&Append New Entry"), "insert_table_row", "Insert", TQT_TQOBJECT(this), TQT_SLOT(slotAppendRow()), actionCollection(),"edit_append"); editAppend = new TDEAction(i18n("&Append New Entry"), "insert_table_row", "Insert", TQT_TQOBJECT(this), TQT_SLOT(slotAppendRow()), actionCollection(),"edit_append");
editAppend->setWhatsThis(i18n("Append a new row to the vocabulary")); editAppend->setWhatsThis(i18n("Append a new row to the vocabulary"));
editAppend->setToolTip(editAppend->whatsThis()); editAppend->setToolTip(editAppend->whatsThis());
editEditSelectedArea = new KAction(i18n("&Edit Selected Area..."), "edit_table_row", "Ctrl+Return", TQT_TQOBJECT(this), TQT_SLOT(slotEditRow()), actionCollection(),"edit_edit_selected_area"); editEditSelectedArea = new TDEAction(i18n("&Edit Selected Area..."), "edit_table_row", "Ctrl+Return", TQT_TQOBJECT(this), TQT_SLOT(slotEditRow()), actionCollection(),"edit_edit_selected_area");
editEditSelectedArea->setWhatsThis(i18n("Edit the entries in the selected rows")); editEditSelectedArea->setWhatsThis(i18n("Edit the entries in the selected rows"));
editEditSelectedArea->setToolTip(editEditSelectedArea->whatsThis()); editEditSelectedArea->setToolTip(editEditSelectedArea->whatsThis());
editRemoveSelectedArea = new KAction(i18n("&Remove Selected Area"), "delete_table_row", "Delete", TQT_TQOBJECT(this), TQT_SLOT(slotRemoveRow()), actionCollection(),"edit_remove_selected_area"); editRemoveSelectedArea = new TDEAction(i18n("&Remove Selected Area"), "delete_table_row", "Delete", TQT_TQOBJECT(this), TQT_SLOT(slotRemoveRow()), actionCollection(),"edit_remove_selected_area");
editRemoveSelectedArea->setWhatsThis(i18n("Delete the selected rows")); editRemoveSelectedArea->setWhatsThis(i18n("Delete the selected rows"));
editRemoveSelectedArea->setToolTip(editRemoveSelectedArea->whatsThis()); editRemoveSelectedArea->setToolTip(editRemoveSelectedArea->whatsThis());
editSaveSelectedArea = new KAction(i18n("Save E&ntries in Query As..."), TDEGlobal::iconLoader()->loadIcon("filesaveas", KIcon::Small), 0, TQT_TQOBJECT(this), TQT_SLOT(slotSaveSelection()), actionCollection(),"edit_save_selected_area"); editSaveSelectedArea = new TDEAction(i18n("Save E&ntries in Query As..."), TDEGlobal::iconLoader()->loadIcon("filesaveas", KIcon::Small), 0, TQT_TQOBJECT(this), TQT_SLOT(slotSaveSelection()), actionCollection(),"edit_save_selected_area");
editSaveSelectedArea->setWhatsThis(i18n("Save the entries in the query as a new vocabulary")); editSaveSelectedArea->setWhatsThis(i18n("Save the entries in the query as a new vocabulary"));
editSaveSelectedArea->setToolTip(editSaveSelectedArea->whatsThis()); editSaveSelectedArea->setToolTip(editSaveSelectedArea->whatsThis());
vocabShowStatistics = new KAction(i18n("Show &Statistics"), "statistics", 0, TQT_TQOBJECT(this), TQT_SLOT(slotShowStatist()), actionCollection(),"vocab_show_statistics"); vocabShowStatistics = new TDEAction(i18n("Show &Statistics"), "statistics", 0, TQT_TQOBJECT(this), TQT_SLOT(slotShowStatist()), actionCollection(),"vocab_show_statistics");
vocabShowStatistics->setWhatsThis(i18n("Show statistics for the current vocabulary")); vocabShowStatistics->setWhatsThis(i18n("Show statistics for the current vocabulary"));
vocabShowStatistics->setToolTip(vocabShowStatistics->whatsThis()); vocabShowStatistics->setToolTip(vocabShowStatistics->whatsThis());
vocabAssignLessons = new KAction(i18n("Assign L&essons..."), "rand_less", 0, TQT_TQOBJECT(this), TQT_SLOT(slotCreateRandom()), actionCollection(),"vocab_assign_lessons"); vocabAssignLessons = new TDEAction(i18n("Assign L&essons..."), "rand_less", 0, TQT_TQOBJECT(this), TQT_SLOT(slotCreateRandom()), actionCollection(),"vocab_assign_lessons");
vocabAssignLessons->setWhatsThis(i18n("Create random lessons with unassigned entries")); vocabAssignLessons->setWhatsThis(i18n("Create random lessons with unassigned entries"));
vocabAssignLessons->setToolTip(vocabAssignLessons->whatsThis()); vocabAssignLessons->setToolTip(vocabAssignLessons->whatsThis());
vocabCleanUp = new KAction(i18n("&Clean Up"), "cleanup", 0, TQT_TQOBJECT(this), TQT_SLOT(slotCleanVocabulary()), actionCollection(),"vocab_clean_up"); vocabCleanUp = new TDEAction(i18n("&Clean Up"), "cleanup", 0, TQT_TQOBJECT(this), TQT_SLOT(slotCleanVocabulary()), actionCollection(),"vocab_clean_up");
vocabCleanUp->setWhatsThis(i18n("Remove entries with same content from vocabulary")); vocabCleanUp->setWhatsThis(i18n("Remove entries with same content from vocabulary"));
vocabCleanUp->setToolTip(vocabCleanUp->whatsThis()); vocabCleanUp->setToolTip(vocabCleanUp->whatsThis());
vocabAppendLanguage = new KSelectAction(i18n("&Append Language"), "insert_table_col", 0, actionCollection(), "vocab_append_language"); vocabAppendLanguage = new TDESelectAction(i18n("&Append Language"), "insert_table_col", 0, actionCollection(), "vocab_append_language");
connect(vocabAppendLanguage->popupMenu(), TQT_SIGNAL(aboutToShow()), TQT_TQOBJECT(this), TQT_SLOT(aboutToShowVocabAppendLanguage())); connect(vocabAppendLanguage->popupMenu(), TQT_SIGNAL(aboutToShow()), TQT_TQOBJECT(this), TQT_SLOT(aboutToShowVocabAppendLanguage()));
connect (vocabAppendLanguage->popupMenu(), TQT_SIGNAL(activated(int)), TQT_TQOBJECT(this), TQT_SLOT(slotAppendLang(int))); connect (vocabAppendLanguage->popupMenu(), TQT_SIGNAL(activated(int)), TQT_TQOBJECT(this), TQT_SLOT(slotAppendLang(int)));
connect (vocabAppendLanguage->popupMenu(), TQT_SIGNAL(highlighted(int)), TQT_TQOBJECT(this), TQT_SLOT(slotHeaderStatus(int))); connect (vocabAppendLanguage->popupMenu(), TQT_SIGNAL(highlighted(int)), TQT_TQOBJECT(this), TQT_SLOT(slotHeaderStatus(int)));
vocabSetLanguage = new KSelectAction(i18n("Set &Language"), "set_language", 0, actionCollection(), "vocab_set_language"); vocabSetLanguage = new TDESelectAction(i18n("Set &Language"), "set_language", 0, actionCollection(), "vocab_set_language");
connect(vocabSetLanguage->popupMenu(), TQT_SIGNAL(aboutToShow()), TQT_TQOBJECT(this), TQT_SLOT(aboutToShowVocabSetLanguage())); connect(vocabSetLanguage->popupMenu(), TQT_SIGNAL(aboutToShow()), TQT_TQOBJECT(this), TQT_SLOT(aboutToShowVocabSetLanguage()));
vocabRemoveLanguage = new KSelectAction(i18n("&Remove Language"), "delete_table_col", 0, actionCollection(), "vocab_remove_language"); vocabRemoveLanguage = new TDESelectAction(i18n("&Remove Language"), "delete_table_col", 0, actionCollection(), "vocab_remove_language");
connect(vocabRemoveLanguage->popupMenu(), TQT_SIGNAL(aboutToShow()), TQT_TQOBJECT(this), TQT_SLOT(aboutToShowVocabRemoveLanguage())); connect(vocabRemoveLanguage->popupMenu(), TQT_SIGNAL(aboutToShow()), TQT_TQOBJECT(this), TQT_SLOT(aboutToShowVocabRemoveLanguage()));
connect(vocabRemoveLanguage->popupMenu(), TQT_SIGNAL(activated(int)), TQT_TQOBJECT(this), TQT_SLOT(slotHeaderCallBack(int))); connect(vocabRemoveLanguage->popupMenu(), TQT_SIGNAL(activated(int)), TQT_TQOBJECT(this), TQT_SLOT(slotHeaderCallBack(int)));
connect(vocabRemoveLanguage->popupMenu(), TQT_SIGNAL(highlighted(int)), TQT_TQOBJECT(this), TQT_SLOT(slotHeaderStatus(int))); connect(vocabRemoveLanguage->popupMenu(), TQT_SIGNAL(highlighted(int)), TQT_TQOBJECT(this), TQT_SLOT(slotHeaderStatus(int)));
vocabDocumentProperties = new KAction(i18n("Document &Properties"), 0, 0, TQT_TQOBJECT(this), TQT_SLOT(slotDocProps()), actionCollection(), "vocab_document_properties"); vocabDocumentProperties = new TDEAction(i18n("Document &Properties"), 0, 0, TQT_TQOBJECT(this), TQT_SLOT(slotDocProps()), actionCollection(), "vocab_document_properties");
vocabDocumentProperties->setWhatsThis(i18n("Edit document properties")); vocabDocumentProperties->setWhatsThis(i18n("Edit document properties"));
vocabDocumentProperties->setToolTip(vocabAppendLanguage->whatsThis()); vocabDocumentProperties->setToolTip(vocabAppendLanguage->whatsThis());
vocabLanguageProperties = new KAction(i18n("Lan&guage Properties"), 0, 0, TQT_TQOBJECT(this), TQT_SLOT(slotDocPropsLang()), actionCollection(), "vocab_language_properties"); vocabLanguageProperties = new TDEAction(i18n("Lan&guage Properties"), 0, 0, TQT_TQOBJECT(this), TQT_SLOT(slotDocPropsLang()), actionCollection(), "vocab_language_properties");
vocabLanguageProperties->setWhatsThis(i18n("Edit language properties in current document")); vocabLanguageProperties->setWhatsThis(i18n("Edit language properties in current document"));
vocabLanguageProperties->setToolTip(vocabSetLanguage->whatsThis()); vocabLanguageProperties->setToolTip(vocabSetLanguage->whatsThis());
@ -224,11 +224,11 @@ void kvoctrainApp::initActions()
vocabSearch->setWhatsThis(i18n("Search vocabulary for specified text ")); vocabSearch->setWhatsThis(i18n("Search vocabulary for specified text "));
vocabSearch->setToolTip(vocabSearch->whatsThis()); vocabSearch->setToolTip(vocabSearch->whatsThis());
/* /*
learningResumeQuery = new KAction(i18n("Resume &Query..."), "run_query", 0, this, TQT_SLOT(slotRestartQuery()), actionCollection(),"learning_resume_query"); learningResumeQuery = new TDEAction(i18n("Resume &Query..."), "run_query", 0, this, TQT_SLOT(slotRestartQuery()), actionCollection(),"learning_resume_query");
//learningResumeQuery->setWhatsThis(i18n("")); //learningResumeQuery->setWhatsThis(i18n(""));
learningResumeQuery->setToolTip(learningResumeQuery->whatsThis()); learningResumeQuery->setToolTip(learningResumeQuery->whatsThis());
learningResumeMultipleChoice = new KAction(i18n("&Resume Multiple Choice..."), "run_multi", 0, this, TQT_SLOT(slotRestartQuery()), actionCollection(),"learning_resume_multiple_choice"); learningResumeMultipleChoice = new TDEAction(i18n("&Resume Multiple Choice..."), "run_multi", 0, this, TQT_SLOT(slotRestartQuery()), actionCollection(),"learning_resume_multiple_choice");
//learningResumeMultipleChoice->setWhatsThis(i18n("")); //learningResumeMultipleChoice->setWhatsThis(i18n(""));
learningResumeMultipleChoice->setToolTip(learningResumeMultipleChoice->whatsThis()); learningResumeMultipleChoice->setToolTip(learningResumeMultipleChoice->whatsThis());
*/ */
@ -236,13 +236,13 @@ void kvoctrainApp::initActions()
configApp->setWhatsThis(i18n("Show the configuration dialog")); configApp->setWhatsThis(i18n("Show the configuration dialog"));
configApp->setToolTip(configApp->whatsThis()); configApp->setToolTip(configApp->whatsThis());
/*configQueryOptions = new KAction(i18n("Configure &Query..."), "configure_query", 0, this, TQT_SLOT(slotQueryOptions()), actionCollection(),"config_query_options"); /*configQueryOptions = new TDEAction(i18n("Configure &Query..."), "configure_query", 0, this, TQT_SLOT(slotQueryOptions()), actionCollection(),"config_query_options");
configQueryOptions->setWhatsThis(i18n("Show the query configuration dialog")); configQueryOptions->setWhatsThis(i18n("Show the query configuration dialog"));
configQueryOptions->setToolTip(configQueryOptions->whatsThis());*/ configQueryOptions->setToolTip(configQueryOptions->whatsThis());*/
actionCollection()->setHighlightingEnabled(true); actionCollection()->setHighlightingEnabled(true);
connect(actionCollection(), TQT_SIGNAL(actionStatusText(const TQString &)), this, TQT_SLOT(slotStatusHelpMsg(const TQString &))); connect(actionCollection(), TQT_SIGNAL(actionStatusText(const TQString &)), this, TQT_SLOT(slotStatusHelpMsg(const TQString &)));
//connect(actionCollection(), TQT_SIGNAL(actionHighlighted(KAction *, bool)), this, TQT_SLOT(slotActionHighlighted(KAction *, bool))); //connect(actionCollection(), TQT_SIGNAL(actionHighlighted(TDEAction *, bool)), this, TQT_SLOT(slotActionHighlighted(TDEAction *, bool)));
if (!initialGeometrySet()) if (!initialGeometrySet())
resize( TQSize(550, 400).expandedTo(minimumSizeHint())); resize( TQSize(550, 400).expandedTo(minimumSizeHint()));
@ -253,7 +253,7 @@ void kvoctrainApp::initActions()
configToolbar->setWhatsThis(i18n("Toggle display of the toolbars")); configToolbar->setWhatsThis(i18n("Toggle display of the toolbars"));
configToolbar->setToolTip(configToolbar->whatsThis()); configToolbar->setToolTip(configToolbar->whatsThis());
learn_menu = (TQPopupMenu*) child( "learning", "KPopupMenu" ); learn_menu = (TQPopupMenu*) child( "learning", "TDEPopupMenu" );
connect(learn_menu, TQT_SIGNAL(activated(int)), this, TQT_SLOT(slotHeaderCallBack(int))); connect(learn_menu, TQT_SIGNAL(activated(int)), this, TQT_SLOT(slotHeaderCallBack(int)));
connect(learn_menu, TQT_SIGNAL(highlighted(int)), this, TQT_SLOT(slotHeaderStatus(int))); connect(learn_menu, TQT_SIGNAL(highlighted(int)), this, TQT_SLOT(slotHeaderStatus(int)));
connect(learn_menu, TQT_SIGNAL(aboutToShow()), this, TQT_SLOT(aboutToShowLearn())); connect(learn_menu, TQT_SIGNAL(aboutToShow()), this, TQT_SLOT(aboutToShowLearn()));

@ -73,7 +73,7 @@ class KVTNewStuff;
* and statusbar. For the main view, an instance of class kvoctrainView is * and statusbar. For the main view, an instance of class kvoctrainView is
* created which creates your view. * created which creates your view.
*/ */
class kvoctrainApp : public KMainWindow class kvoctrainApp : public TDEMainWindow
{ {
Q_OBJECT Q_OBJECT
@ -101,12 +101,12 @@ public:
/** saves the window properties for each open window during session end to the session config file, including saving the currently /** saves the window properties for each open window during session end to the session config file, including saving the currently
* opened file by a temporary filename provided by TDEApplication. * opened file by a temporary filename provided by TDEApplication.
* @see KMainWindow#saveProperties * @see TDEMainWindow#saveProperties
*/ */
virtual void saveProperties(TDEConfig* ); virtual void saveProperties(TDEConfig* );
/** reads the session config file and restores the application's state including the last opened files and documents by reading the /** reads the session config file and restores the application's state including the last opened files and documents by reading the
* temporary files saved by saveProperties() * temporary files saved by saveProperties()
* @see KMainWindow#readProperties * @see TDEMainWindow#readProperties
*/ */
virtual void readProperties(TDEConfig* ); virtual void readProperties(TDEConfig* );
@ -229,46 +229,46 @@ public:
static vector<int> getCsvOrder(kvoctrainDoc *); static vector<int> getCsvOrder(kvoctrainDoc *);
private: private:
// KAction pointers to enable/disable actions // TDEAction pointers to enable/disable actions
KAction* fileNew; TDEAction* fileNew;
KAction* fileOpen; TDEAction* fileOpen;
KAction* fileOpenExample; TDEAction* fileOpenExample;
KAction* fileGHNS; TDEAction* fileGHNS;
KRecentFilesAction* fileOpenRecent; TDERecentFilesAction* fileOpenRecent;
KAction* fileMerge; TDEAction* fileMerge;
KAction* fileSave; TDEAction* fileSave;
KAction* fileSaveAs; TDEAction* fileSaveAs;
KAction* filePrint; TDEAction* filePrint;
KAction* fileQuit; TDEAction* fileQuit;
KAction* editCopy; TDEAction* editCopy;
KAction* editPaste; TDEAction* editPaste;
KAction* editSelectAll; TDEAction* editSelectAll;
KAction* editClearSelection; TDEAction* editClearSelection;
KAction* editSearchFromClipboard; TDEAction* editSearchFromClipboard;
KAction* editAppend; TDEAction* editAppend;
KAction* editEditSelectedArea; TDEAction* editEditSelectedArea;
KAction* editRemoveSelectedArea; TDEAction* editRemoveSelectedArea;
KAction* editSaveSelectedArea; TDEAction* editSaveSelectedArea;
KAction* vocabShowStatistics; TDEAction* vocabShowStatistics;
KAction* vocabAssignLessons; TDEAction* vocabAssignLessons;
KAction* vocabCleanUp; TDEAction* vocabCleanUp;
KSelectAction* vocabAppendLanguage; TDESelectAction* vocabAppendLanguage;
KSelectAction* vocabSetLanguage; TDESelectAction* vocabSetLanguage;
KSelectAction* vocabRemoveLanguage; TDESelectAction* vocabRemoveLanguage;
KAction* vocabDocumentProperties; TDEAction* vocabDocumentProperties;
KAction* vocabLanguageProperties; TDEAction* vocabLanguageProperties;
KWidgetAction* vocabLessons; KWidgetAction* vocabLessons;
KWidgetAction* vocabSearch; KWidgetAction* vocabSearch;
//KAction* learningResumeQuery; //TDEAction* learningResumeQuery;
//KAction* learningResumeMultipleChoice; //TDEAction* learningResumeMultipleChoice;
KAction* configToolbar; TDEAction* configToolbar;
KAction* configNotifications; TDEAction* configNotifications;
KAction* configApp; TDEAction* configApp;
//KAction* configQueryOptions; //TDEAction* configQueryOptions;
TQString lastPixName; TQString lastPixName;

@ -99,7 +99,7 @@ static const char version[] = KVOCTRAIN_VERSION_STRING;
kvoctrainApp *kva = 0; kvoctrainApp *kva = 0;
if (app.isRestored()) { if (app.isRestored()) {
int n = 1; int n = 1;
while (KMainWindow::canBeRestored(n)){ while (TDEMainWindow::canBeRestored(n)){
kva = new kvoctrainApp; kva = new kvoctrainApp;
kva->restore(n); kva->restore(n);
kva->show(); kva->show();

@ -272,7 +272,7 @@ void StatistikPage::slotPopupMenu(int row, int col)
else else
return; return;
KPopupMenu *header_m = new KPopupMenu(i18n("Number of Entries per Grade")); TDEPopupMenu *header_m = new TDEPopupMenu(i18n("Number of Entries per Grade"));
header_m->insertItem (i18n(KV_NORM_TEXT) + "\t" + TQString::number(sc->grade[KV_NORM_GRADE]) ); header_m->insertItem (i18n(KV_NORM_TEXT) + "\t" + TQString::number(sc->grade[KV_NORM_GRADE]) );
header_m->insertItem (i18n(KV_LEV1_TEXT) + "\t" + TQString::number(sc->grade[KV_LEV1_GRADE]) ); header_m->insertItem (i18n(KV_LEV1_TEXT) + "\t" + TQString::number(sc->grade[KV_LEV1_GRADE]) );

@ -55,11 +55,11 @@ private:
WQQuiz *m_quiz; WQQuiz *m_quiz;
WTQScore *m_score; WTQScore *m_score;
KAction* actFlip; TDEAction* actFlip;
KAction* actKnow; TDEAction* actKnow;
KAction* actDontKnow; TDEAction* actDontKnow;
KAction* actRepeat; TDEAction* actRepeat;
KAction* actRestart; TDEAction* actRestart;
TQTimer* m_timer; TQTimer* m_timer;

@ -54,7 +54,7 @@
#define ID_MENU_QUIZ 1001 #define ID_MENU_QUIZ 1001
KWordQuizApp::KWordQuizApp(TQWidget* , const char* name):KMainWindow(0, name) KWordQuizApp::KWordQuizApp(TQWidget* , const char* name):TDEMainWindow(0, name)
{ {
/////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////
@ -101,9 +101,9 @@ KWordQuizApp::~KWordQuizApp()
void KWordQuizApp::initActions() void KWordQuizApp::initActions()
{ {
KAction* configToolbar; TDEAction* configToolbar;
KAction* configNotifications; TDEAction* configNotifications;
KAction* configApp; TDEAction* configApp;
fileNew = KStdAction::openNew(TQT_TQOBJECT(this), TQT_SLOT(slotFileNew()), actionCollection()); fileNew = KStdAction::openNew(TQT_TQOBJECT(this), TQT_SLOT(slotFileNew()), actionCollection());
fileNew->setWhatsThis(i18n("Creates a new blank vocabulary document")); fileNew->setWhatsThis(i18n("Creates a new blank vocabulary document"));
@ -115,7 +115,7 @@ void KWordQuizApp::initActions()
fileOpenRecent = KStdAction::openRecent(TQT_TQOBJECT(this), TQT_SLOT(slotFileOpenRecent(const KURL&)), actionCollection()); fileOpenRecent = KStdAction::openRecent(TQT_TQOBJECT(this), TQT_SLOT(slotFileOpenRecent(const KURL&)), actionCollection());
fileGHNS = new KAction(i18n("&Get New Vocabularies..."), "knewstuff", "CTRL+G", TQT_TQOBJECT(this), TQT_SLOT(slotFileGHNS()), actionCollection(), "file_ghns"); fileGHNS = new TDEAction(i18n("&Get New Vocabularies..."), "knewstuff", "CTRL+G", TQT_TQOBJECT(this), TQT_SLOT(slotFileGHNS()), actionCollection(), "file_ghns");
fileGHNS->setWhatsThis(i18n("Downloads new vocabularies")); fileGHNS->setWhatsThis(i18n("Downloads new vocabularies"));
fileGHNS->setToolTip(fileGHNS->whatsThis()); fileGHNS->setToolTip(fileGHNS->whatsThis());
@ -159,51 +159,51 @@ void KWordQuizApp::initActions()
editClear->setWhatsThis(i18n("Clears the content of the selected cells")); editClear->setWhatsThis(i18n("Clears the content of the selected cells"));
editClear->setToolTip(editClear->whatsThis()); editClear->setToolTip(editClear->whatsThis());
editInsert = new KAction(i18n("&Insert Row"), "insert_table_row", "CTRL+I", TQT_TQOBJECT(this), TQT_SLOT(slotEditInsert()), actionCollection(),"edit_insert"); editInsert = new TDEAction(i18n("&Insert Row"), "insert_table_row", "CTRL+I", TQT_TQOBJECT(this), TQT_SLOT(slotEditInsert()), actionCollection(),"edit_insert");
editInsert->setWhatsThis(i18n("Inserts a new row above the current row")); editInsert->setWhatsThis(i18n("Inserts a new row above the current row"));
editInsert->setToolTip(editInsert->whatsThis()); editInsert->setToolTip(editInsert->whatsThis());
editDelete = new KAction(i18n("&Delete Row"), "delete_table_row", "CTRL+K", TQT_TQOBJECT(this), TQT_SLOT(slotEditDelete()), actionCollection(),"edit_delete"); editDelete = new TDEAction(i18n("&Delete Row"), "delete_table_row", "CTRL+K", TQT_TQOBJECT(this), TQT_SLOT(slotEditDelete()), actionCollection(),"edit_delete");
editDelete->setWhatsThis(i18n("Deletes the selected row(s)")); editDelete->setWhatsThis(i18n("Deletes the selected row(s)"));
editDelete->setToolTip(editDelete->whatsThis()); editDelete->setToolTip(editDelete->whatsThis());
editMarkBlank = new KAction(i18n("&Mark as Blank"), "markasblank", "CTRL+M", TQT_TQOBJECT(this), TQT_SLOT(slotEditMarkBlank()), actionCollection(),"edit_mark_blank"); editMarkBlank = new TDEAction(i18n("&Mark as Blank"), "markasblank", "CTRL+M", TQT_TQOBJECT(this), TQT_SLOT(slotEditMarkBlank()), actionCollection(),"edit_mark_blank");
editMarkBlank->setWhatsThis(i18n("Marks the current or selected word as a blank for Fill-in-the-blank")); editMarkBlank->setWhatsThis(i18n("Marks the current or selected word as a blank for Fill-in-the-blank"));
editMarkBlank->setToolTip(editMarkBlank->whatsThis()); editMarkBlank->setToolTip(editMarkBlank->whatsThis());
editUnmarkBlank = new KAction(i18n("&Unmark Blanks"), "unmarkasblank", 0, TQT_TQOBJECT(this), TQT_SLOT(slotEditUnmarkBlank()), actionCollection(),"edit_unmark_blank"); editUnmarkBlank = new TDEAction(i18n("&Unmark Blanks"), "unmarkasblank", 0, TQT_TQOBJECT(this), TQT_SLOT(slotEditUnmarkBlank()), actionCollection(),"edit_unmark_blank");
editUnmarkBlank->setWhatsThis(i18n("Removes blanks from the current or selected word")); editUnmarkBlank->setWhatsThis(i18n("Removes blanks from the current or selected word"));
editUnmarkBlank->setToolTip(editUnmarkBlank->whatsThis()); editUnmarkBlank->setToolTip(editUnmarkBlank->whatsThis());
//@todo implement editFind = KStdAction::find(this, TQT_SLOT(slotEditFind()), actionCollection()); //@todo implement editFind = KStdAction::find(this, TQT_SLOT(slotEditFind()), actionCollection());
vocabLanguages = new KAction(i18n("&Column Titles..."), "languages", "CTRL+L", TQT_TQOBJECT(this), TQT_SLOT(slotVocabLanguages()), actionCollection(),"vocab_languages"); vocabLanguages = new TDEAction(i18n("&Column Titles..."), "languages", "CTRL+L", TQT_TQOBJECT(this), TQT_SLOT(slotVocabLanguages()), actionCollection(),"vocab_languages");
vocabLanguages->setWhatsThis(i18n("Defines the column titles for the active vocabulary")); vocabLanguages->setWhatsThis(i18n("Defines the column titles for the active vocabulary"));
vocabLanguages->setToolTip(vocabLanguages->whatsThis()); vocabLanguages->setToolTip(vocabLanguages->whatsThis());
vocabFont = new KAction(i18n("&Font..."), "fonts", 0, TQT_TQOBJECT(this), TQT_SLOT(slotVocabFont()), actionCollection(),"vocab_font"); vocabFont = new TDEAction(i18n("&Font..."), "fonts", 0, TQT_TQOBJECT(this), TQT_SLOT(slotVocabFont()), actionCollection(),"vocab_font");
vocabFont->setWhatsThis(i18n("Defines the font used by the editor")); vocabFont->setWhatsThis(i18n("Defines the font used by the editor"));
vocabFont->setToolTip(vocabFont->whatsThis()); vocabFont->setToolTip(vocabFont->whatsThis());
//@todo implement vocabKeyboard = new KAction(i18n("&Keyboard..."), "kxkb", 0, TQT_TQOBJECT(this), TQT_SLOT(slotVocabKeyboard()), actionCollection(),"vocab_keyboard"); //@todo implement vocabKeyboard = new TDEAction(i18n("&Keyboard..."), "kxkb", 0, TQT_TQOBJECT(this), TQT_SLOT(slotVocabKeyboard()), actionCollection(),"vocab_keyboard");
vocabRC = new KAction(i18n("&Rows/Columns..."), "rowcol", 0, TQT_TQOBJECT(this), TQT_SLOT(slotVocabRC()), actionCollection(),"vocab_rc"); vocabRC = new TDEAction(i18n("&Rows/Columns..."), "rowcol", 0, TQT_TQOBJECT(this), TQT_SLOT(slotVocabRC()), actionCollection(),"vocab_rc");
vocabRC->setWhatsThis(i18n("Defines the number of rows, row heights, and column widths for the active vocabulary")); vocabRC->setWhatsThis(i18n("Defines the number of rows, row heights, and column widths for the active vocabulary"));
vocabRC->setToolTip(vocabRC->whatsThis()); vocabRC->setToolTip(vocabRC->whatsThis());
vocabSort = new KAction(i18n("&Sort..."), "sort_incr", 0, TQT_TQOBJECT(this), TQT_SLOT(slotVocabSort()), actionCollection(),"vocab_sort"); vocabSort = new TDEAction(i18n("&Sort..."), "sort_incr", 0, TQT_TQOBJECT(this), TQT_SLOT(slotVocabSort()), actionCollection(),"vocab_sort");
vocabSort->setWhatsThis(i18n("Sorts the vocabulary in ascending or descending order based on the left or right column")); vocabSort->setWhatsThis(i18n("Sorts the vocabulary in ascending or descending order based on the left or right column"));
vocabSort->setToolTip(vocabSort->whatsThis()); vocabSort->setToolTip(vocabSort->whatsThis());
vocabShuffle = new KAction(i18n("Sh&uffle"), "shuffle", 0, TQT_TQOBJECT(this), TQT_SLOT(slotVocabShuffle()), actionCollection(),"vocab_shuffle"); vocabShuffle = new TDEAction(i18n("Sh&uffle"), "shuffle", 0, TQT_TQOBJECT(this), TQT_SLOT(slotVocabShuffle()), actionCollection(),"vocab_shuffle");
vocabShuffle->setWhatsThis(i18n("Shuffles the entries of the active vocabulary")); vocabShuffle->setWhatsThis(i18n("Shuffles the entries of the active vocabulary"));
vocabShuffle->setToolTip(vocabShuffle->whatsThis()); vocabShuffle->setToolTip(vocabShuffle->whatsThis());
mode = new KToolBarPopupAction(i18n("Change Mode"), "mode1", 0, TQT_TQOBJECT(this), TQT_SLOT(slotMode0()), actionCollection(),"mode_0"); mode = new TDEToolBarPopupAction(i18n("Change Mode"), "mode1", 0, TQT_TQOBJECT(this), TQT_SLOT(slotMode0()), actionCollection(),"mode_0");
mode->setWhatsThis(i18n("Changes the mode used in quiz sessions")); mode->setWhatsThis(i18n("Changes the mode used in quiz sessions"));
mode->setToolTip(mode->whatsThis()); mode->setToolTip(mode->whatsThis());
KPopupMenu *popup = mode->popupMenu(); TDEPopupMenu *popup = mode->popupMenu();
popup->clear(); popup->clear();
popup->insertItem(TDEGlobal::iconLoader()->loadIconSet("mode1", KIcon::Toolbar), "", TQT_TQOBJECT(this), TQT_SLOT(slotMode1()), 0, 0); popup->insertItem(TDEGlobal::iconLoader()->loadIconSet("mode1", KIcon::Toolbar), "", TQT_TQOBJECT(this), TQT_SLOT(slotMode1()), 0, 0);
popup->insertItem(TDEGlobal::iconLoader()->loadIconSet("mode2", KIcon::Toolbar), "", TQT_TQOBJECT(this), TQT_SLOT(slotMode2()), 0, 1); popup->insertItem(TDEGlobal::iconLoader()->loadIconSet("mode2", KIcon::Toolbar), "", TQT_TQOBJECT(this), TQT_SLOT(slotMode2()), 0, 1);
@ -211,11 +211,11 @@ void KWordQuizApp::initActions()
popup->insertItem(TDEGlobal::iconLoader()->loadIconSet("mode4", KIcon::Toolbar), "", TQT_TQOBJECT(this), TQT_SLOT(slotMode4()), 0, 3); popup->insertItem(TDEGlobal::iconLoader()->loadIconSet("mode4", KIcon::Toolbar), "", TQT_TQOBJECT(this), TQT_SLOT(slotMode4()), 0, 3);
popup->insertItem(TDEGlobal::iconLoader()->loadIconSet("mode5", KIcon::Toolbar), "", TQT_TQOBJECT(this), TQT_SLOT(slotMode5()), 0, 4); popup->insertItem(TDEGlobal::iconLoader()->loadIconSet("mode5", KIcon::Toolbar), "", TQT_TQOBJECT(this), TQT_SLOT(slotMode5()), 0, 4);
mode1 = new KToggleAction("", "mode1", 0, TQT_TQOBJECT(this), TQT_SLOT(slotMode1()), actionCollection(),"mode_1"); mode1 = new TDEToggleAction("", "mode1", 0, TQT_TQOBJECT(this), TQT_SLOT(slotMode1()), actionCollection(),"mode_1");
mode2 = new KToggleAction("", "mode2", 0, TQT_TQOBJECT(this), TQT_SLOT(slotMode2()), actionCollection(),"mode_2"); mode2 = new TDEToggleAction("", "mode2", 0, TQT_TQOBJECT(this), TQT_SLOT(slotMode2()), actionCollection(),"mode_2");
mode3 = new KToggleAction("", "mode3", 0, TQT_TQOBJECT(this), TQT_SLOT(slotMode3()), actionCollection(),"mode_3"); mode3 = new TDEToggleAction("", "mode3", 0, TQT_TQOBJECT(this), TQT_SLOT(slotMode3()), actionCollection(),"mode_3");
mode4 = new KToggleAction("", "mode4", 0, TQT_TQOBJECT(this), TQT_SLOT(slotMode4()), actionCollection(),"mode_4"); mode4 = new TDEToggleAction("", "mode4", 0, TQT_TQOBJECT(this), TQT_SLOT(slotMode4()), actionCollection(),"mode_4");
mode5 = new KToggleAction("", "mode5", 0, TQT_TQOBJECT(this), TQT_SLOT(slotMode5()), actionCollection(),"mode_5"); mode5 = new TDEToggleAction("", "mode5", 0, TQT_TQOBJECT(this), TQT_SLOT(slotMode5()), actionCollection(),"mode_5");
mode1->setWhatsThis(i18n("Selects this mode")); mode1->setWhatsThis(i18n("Selects this mode"));
mode2->setWhatsThis(i18n("Selects this mode")); mode2->setWhatsThis(i18n("Selects this mode"));
mode3->setWhatsThis(i18n("Selects this mode")); mode3->setWhatsThis(i18n("Selects this mode"));
@ -227,43 +227,43 @@ void KWordQuizApp::initActions()
mode4->setToolTip(mode4->whatsThis()); mode4->setToolTip(mode4->whatsThis());
mode5->setToolTip(mode5->whatsThis()); mode5->setToolTip(mode5->whatsThis());
quizEditor = new KAction(i18n("&Editor"), "editor", "F6", TQT_TQOBJECT(this), TQT_SLOT(slotQuizEditor()), actionCollection(),"quiz_editor"); quizEditor = new TDEAction(i18n("&Editor"), "editor", "F6", TQT_TQOBJECT(this), TQT_SLOT(slotQuizEditor()), actionCollection(),"quiz_editor");
quizEditor->setWhatsThis(i18n("Activates the vocabulary editor")); quizEditor->setWhatsThis(i18n("Activates the vocabulary editor"));
quizEditor->setToolTip(quizEditor->whatsThis()); quizEditor->setToolTip(quizEditor->whatsThis());
quizFlash = new KAction(i18n("&Flashcard"), "flash", "F7", TQT_TQOBJECT(this), TQT_SLOT(slotQuizFlash()), actionCollection(),"quiz_flash"); quizFlash = new TDEAction(i18n("&Flashcard"), "flash", "F7", TQT_TQOBJECT(this), TQT_SLOT(slotQuizFlash()), actionCollection(),"quiz_flash");
quizFlash->setWhatsThis(i18n("Starts a flashcard session using the active vocabulary")); quizFlash->setWhatsThis(i18n("Starts a flashcard session using the active vocabulary"));
quizFlash->setToolTip(quizFlash->whatsThis()); quizFlash->setToolTip(quizFlash->whatsThis());
quizMultiple = new KAction(i18n("&Multiple Choice"), "multiple", "F8", TQT_TQOBJECT(this), TQT_SLOT(slotQuizMultiple()), actionCollection(),"quiz_multiple"); quizMultiple = new TDEAction(i18n("&Multiple Choice"), "multiple", "F8", TQT_TQOBJECT(this), TQT_SLOT(slotQuizMultiple()), actionCollection(),"quiz_multiple");
quizMultiple->setWhatsThis(i18n("Starts a multiple choice session using the active vocabulary")); quizMultiple->setWhatsThis(i18n("Starts a multiple choice session using the active vocabulary"));
quizMultiple->setToolTip(quizMultiple->whatsThis()); quizMultiple->setToolTip(quizMultiple->whatsThis());
quizQA = new KAction(i18n("&Question && Answer"), "qa", "F9", TQT_TQOBJECT(this), TQT_SLOT(slotQuizQA()), actionCollection(),"quiz_qa"); quizQA = new TDEAction(i18n("&Question && Answer"), "qa", "F9", TQT_TQOBJECT(this), TQT_SLOT(slotQuizQA()), actionCollection(),"quiz_qa");
quizQA->setWhatsThis(i18n("Starts a question and answer session using the active vocabulary")); quizQA->setWhatsThis(i18n("Starts a question and answer session using the active vocabulary"));
quizQA->setToolTip(quizQA->whatsThis()); quizQA->setToolTip(quizQA->whatsThis());
quizCheck = new KAction(i18n("&Check"), "check", "Return", TQT_TQOBJECT(this), 0, actionCollection(),"quiz_check"); quizCheck = new TDEAction(i18n("&Check"), "check", "Return", TQT_TQOBJECT(this), 0, actionCollection(),"quiz_check");
quizCheck->setWhatsThis(i18n("Checks your answer to this question")); quizCheck->setWhatsThis(i18n("Checks your answer to this question"));
quizCheck->setToolTip(quizCheck->whatsThis()); quizCheck->setToolTip(quizCheck->whatsThis());
flashKnow = new KAction(i18n("I &Know"), "know", "K", TQT_TQOBJECT(this), 0, actionCollection(),"flash_know"); flashKnow = new TDEAction(i18n("I &Know"), "know", "K", TQT_TQOBJECT(this), 0, actionCollection(),"flash_know");
flashKnow->setWhatsThis(i18n("Counts this card as correct and shows the next card")); flashKnow->setWhatsThis(i18n("Counts this card as correct and shows the next card"));
flashKnow->setToolTip(flashKnow->whatsThis()); flashKnow->setToolTip(flashKnow->whatsThis());
flashDontKnow = new KAction(i18n("I &Do Not Know"), "dontknow", "D", TQT_TQOBJECT(this), 0, actionCollection(),"flash_dont_know"); flashDontKnow = new TDEAction(i18n("I &Do Not Know"), "dontknow", "D", TQT_TQOBJECT(this), 0, actionCollection(),"flash_dont_know");
flashDontKnow->setWhatsThis(i18n("Counts this card as incorrect and shows the next card")); flashDontKnow->setWhatsThis(i18n("Counts this card as incorrect and shows the next card"));
flashDontKnow->setToolTip(flashDontKnow->whatsThis()); flashDontKnow->setToolTip(flashDontKnow->whatsThis());
qaHint = new KAction(i18n("&Hint"), "hint", "CTRL+H", TQT_TQOBJECT(this), 0, actionCollection(),"qa_hint"); qaHint = new TDEAction(i18n("&Hint"), "hint", "CTRL+H", TQT_TQOBJECT(this), 0, actionCollection(),"qa_hint");
qaHint->setWhatsThis(i18n("Gets the next correct letter of the answer")); qaHint->setWhatsThis(i18n("Gets the next correct letter of the answer"));
qaHint->setToolTip(qaHint->whatsThis()); qaHint->setToolTip(qaHint->whatsThis());
quizRestart = new KAction(i18n("&Restart"), "restart.png", "CTRL+R", TQT_TQOBJECT(this), 0, actionCollection(), "quiz_restart"); quizRestart = new TDEAction(i18n("&Restart"), "restart.png", "CTRL+R", TQT_TQOBJECT(this), 0, actionCollection(), "quiz_restart");
quizRestart->setWhatsThis(i18n("Restarts the quiz session from the beginning")); quizRestart->setWhatsThis(i18n("Restarts the quiz session from the beginning"));
quizRestart->setToolTip(quizRestart->whatsThis()); quizRestart->setToolTip(quizRestart->whatsThis());
quizRepeatErrors = new KAction(i18n("Repeat &Errors"), "repeat", "CTRL+E", TQT_TQOBJECT(this), 0, actionCollection(),"quiz_repeat_errors"); quizRepeatErrors = new TDEAction(i18n("Repeat &Errors"), "repeat", "CTRL+E", TQT_TQOBJECT(this), 0, actionCollection(),"quiz_repeat_errors");
quizRepeatErrors->setWhatsThis(i18n("Repeats all incorrectly answered questions")); quizRepeatErrors->setWhatsThis(i18n("Repeats all incorrectly answered questions"));
quizRepeatErrors->setToolTip(quizRepeatErrors->whatsThis()); quizRepeatErrors->setToolTip(quizRepeatErrors->whatsThis());
@ -278,15 +278,15 @@ void KWordQuizApp::initActions()
charMapper = new TQSignalMapper(TQT_TQOBJECT(this)); charMapper = new TQSignalMapper(TQT_TQOBJECT(this));
connect(charMapper, TQT_SIGNAL(mapped(int)), TQT_TQOBJECT(this), TQT_SLOT(slotInsertChar(int))); connect(charMapper, TQT_SIGNAL(mapped(int)), TQT_TQOBJECT(this), TQT_SLOT(slotInsertChar(int)));
specialChar1 = new KAction(i18n("Special Character 1"), "", "CTRL+1", charMapper, TQT_SLOT(map()), actionCollection(), "char_1") ; specialChar1 = new TDEAction(i18n("Special Character 1"), "", "CTRL+1", charMapper, TQT_SLOT(map()), actionCollection(), "char_1") ;
specialChar2 = new KAction(i18n("Special Character 2"), 0, "CTRL+2", charMapper, TQT_SLOT(map()), actionCollection(), "char_2") ; specialChar2 = new TDEAction(i18n("Special Character 2"), 0, "CTRL+2", charMapper, TQT_SLOT(map()), actionCollection(), "char_2") ;
specialChar3 = new KAction(i18n("Special Character 3"), 0, "CTRL+3", charMapper, TQT_SLOT(map()), actionCollection(), "char_3") ; specialChar3 = new TDEAction(i18n("Special Character 3"), 0, "CTRL+3", charMapper, TQT_SLOT(map()), actionCollection(), "char_3") ;
specialChar4 = new KAction(i18n("Special Character 4"), 0, "CTRL+4", charMapper, TQT_SLOT(map()), actionCollection(), "char_4") ; specialChar4 = new TDEAction(i18n("Special Character 4"), 0, "CTRL+4", charMapper, TQT_SLOT(map()), actionCollection(), "char_4") ;
specialChar5 = new KAction(i18n("Special Character 5"), 0, "CTRL+5", charMapper, TQT_SLOT(map()), actionCollection(), "char_5") ; specialChar5 = new TDEAction(i18n("Special Character 5"), 0, "CTRL+5", charMapper, TQT_SLOT(map()), actionCollection(), "char_5") ;
specialChar6 = new KAction(i18n("Special Character 6"), 0, "CTRL+6", charMapper, TQT_SLOT(map()), actionCollection(), "char_6") ; specialChar6 = new TDEAction(i18n("Special Character 6"), 0, "CTRL+6", charMapper, TQT_SLOT(map()), actionCollection(), "char_6") ;
specialChar7 = new KAction(i18n("Special Character 7"), 0, "CTRL+7", charMapper, TQT_SLOT(map()), actionCollection(), "char_7") ; specialChar7 = new TDEAction(i18n("Special Character 7"), 0, "CTRL+7", charMapper, TQT_SLOT(map()), actionCollection(), "char_7") ;
specialChar8 = new KAction(i18n("Special Character 8"), 0, "CTRL+8", charMapper, TQT_SLOT(map()), actionCollection(), "char_8") ; specialChar8 = new TDEAction(i18n("Special Character 8"), 0, "CTRL+8", charMapper, TQT_SLOT(map()), actionCollection(), "char_8") ;
specialChar9 = new KAction(i18n("Special Character 9"), 0, "CTRL+9", charMapper, TQT_SLOT(map()), actionCollection(), "char_9") ; specialChar9 = new TDEAction(i18n("Special Character 9"), 0, "CTRL+9", charMapper, TQT_SLOT(map()), actionCollection(), "char_9") ;
charMapper->setMapping(specialChar1, 1); charMapper->setMapping(specialChar1, 1);
charMapper->setMapping(specialChar2, 2); charMapper->setMapping(specialChar2, 2);
@ -300,7 +300,7 @@ void KWordQuizApp::initActions()
actionCollection()->setHighlightingEnabled(true); actionCollection()->setHighlightingEnabled(true);
connect(actionCollection(), TQT_SIGNAL(actionStatusText(const TQString &)), TQT_TQOBJECT(this), TQT_SLOT(slotStatusMsg(const TQString &))); connect(actionCollection(), TQT_SIGNAL(actionStatusText(const TQString &)), TQT_TQOBJECT(this), TQT_SLOT(slotStatusMsg(const TQString &)));
connect(actionCollection(), TQT_SIGNAL(actionHighlighted(KAction *, bool)), TQT_TQOBJECT(this), TQT_SLOT(slotActionHighlighted(KAction *, bool))); connect(actionCollection(), TQT_SIGNAL(actionHighlighted(TDEAction *, bool)), TQT_TQOBJECT(this), TQT_SLOT(slotActionHighlighted(TDEAction *, bool)));
updateSpecialCharIcons(); updateSpecialCharIcons();
if (!initialGeometrySet()) if (!initialGeometrySet())
@ -342,7 +342,7 @@ void KWordQuizApp::openURL(const KURL& url)
if(!url.isEmpty()) { if(!url.isEmpty()) {
if (m_dirWatch->contains(url.path())) if (m_dirWatch->contains(url.path()))
{ {
KMainWindow* w; TDEMainWindow* w;
if(memberList) if(memberList)
{ {
for(w=memberList->first(); w!=0; w=memberList->next()) for(w=memberList->first(); w!=0; w=memberList->next())
@ -678,7 +678,7 @@ void KWordQuizApp::slotFileQuit()
saveOptions(); saveOptions();
// close the first window, the list makes the next one the first again. // close the first window, the list makes the next one the first again.
// This ensures that queryClose() is called on each window to ask for closing // This ensures that queryClose() is called on each window to ask for closing
KMainWindow* w; TDEMainWindow* w;
if(memberList) if(memberList)
{ {
for(w=memberList->first(); w!=0; w=memberList->next()) for(w=memberList->first(); w!=0; w=memberList->next())
@ -787,10 +787,10 @@ void KWordQuizApp::slotVocabLanguages()
void KWordQuizApp::slotVocabFont() void KWordQuizApp::slotVocabFont()
{ {
slotStatusMsg(i18n("Setting the font of the vocabulary...")); slotStatusMsg(i18n("Setting the font of the vocabulary..."));
KFontDialog* dlg; TDEFontDialog* dlg;
dlg = new KFontDialog(this, "dlg_font", false, true); dlg = new TDEFontDialog(this, "dlg_font", false, true);
dlg->setFont(m_editView -> font()); dlg->setFont(m_editView -> font());
if (dlg->exec() == KFontDialog::Accepted) if (dlg->exec() == TDEFontDialog::Accepted)
{ {
m_editView ->setFont(dlg->font()); m_editView ->setFont(dlg->font());
Prefs::setEditorFont(dlg->font()); Prefs::setEditorFont(dlg->font());
@ -1072,7 +1072,7 @@ void KWordQuizApp::slotApplyPreferences()
void KWordQuizApp::updateSpecialCharIcons( ) void KWordQuizApp::updateSpecialCharIcons( )
{ {
for (int i = 0; i < 9; i++){ for (int i = 0; i < 9; i++){
KAction * act = actionCollection()->action(TQString("char_" + TQString::number(i + 1)).latin1()); TDEAction * act = actionCollection()->action(TQString("char_" + TQString::number(i + 1)).latin1());
act->setIcon(charIcon(Prefs::specialCharacters()[i])); act->setIcon(charIcon(Prefs::specialCharacters()[i]));
act->setToolTip(i18n("Inserts the character %1").arg(Prefs::specialCharacters()[i])); act->setToolTip(i18n("Inserts the character %1").arg(Prefs::specialCharacters()[i]));
} }
@ -1157,7 +1157,7 @@ void KWordQuizApp::updateMode(int m)
mode4->setChecked(Prefs::mode() == 4); mode4->setChecked(Prefs::mode() == 4);
mode5->setChecked(Prefs::mode() == 5); mode5->setChecked(Prefs::mode() == 5);
KPopupMenu *popup = mode->popupMenu(); TDEPopupMenu *popup = mode->popupMenu();
popup->setItemChecked(0, Prefs::mode() == 1); popup->setItemChecked(0, Prefs::mode() == 1);
popup->setItemChecked(1, Prefs::mode() == 2); popup->setItemChecked(1, Prefs::mode() == 2);
popup->setItemChecked(2, Prefs::mode() == 3); popup->setItemChecked(2, Prefs::mode() == 3);
@ -1204,7 +1204,7 @@ void KWordQuizApp::slotInsertChar( int i )
m_editView->slotSpecChar(Prefs::specialCharacters()[i - 1]); m_editView->slotSpecChar(Prefs::specialCharacters()[i - 1]);
} }
void KWordQuizApp::slotActionHighlighted( KAction * action, bool hl) void KWordQuizApp::slotActionHighlighted( TDEAction * action, bool hl)
{ {
if (!hl) if (!hl)
slotStatusMsg(i18n("Ready")); slotStatusMsg(i18n("Ready"));

@ -48,16 +48,16 @@ class KWQNewStuff;
* window and reads the config file as well as providing a menubar, toolbar * window and reads the config file as well as providing a menubar, toolbar
* and statusbar. An instance of KWordQuizView creates your center view, which is connected * and statusbar. An instance of KWordQuizView creates your center view, which is connected
* to the window's Doc object. * to the window's Doc object.
* KWordQuizApp reimplements the methods that KMainWindow provides for main window handling and supports * KWordQuizApp reimplements the methods that TDEMainWindow provides for main window handling and supports
* full session management as well as using KActions. * full session management as well as using TDEActions.
* @see KMainWindow * @see TDEMainWindow
* @see TDEApplication * @see TDEApplication
* @see TDEConfig * @see TDEConfig
* *
* @author Source Framework Automatically Generated by KDevelop, (c) The KDevelop Team. * @author Source Framework Automatically Generated by KDevelop, (c) The KDevelop Team.
* @version KDevelop version 1.2 code generation * @version KDevelop version 1.2 code generation
*/ */
class KWordQuizApp : public KMainWindow class KWordQuizApp : public TDEMainWindow
{ {
Q_OBJECT Q_OBJECT
@ -86,7 +86,7 @@ class KWordQuizApp : public KMainWindow
/** read general Options again and initialize all variables like the recent file list /** read general Options again and initialize all variables like the recent file list
*/ */
void readOptions(); void readOptions();
/** initializes the KActions of the application */ /** initializes the TDEActions of the application */
void initActions(); void initActions();
/** sets up the statusbar for the main window by initialzing a statuslabel. /** sets up the statusbar for the main window by initialzing a statuslabel.
@ -222,7 +222,7 @@ class KWordQuizApp : public KMainWindow
void slotInsertChar(int i); void slotInsertChar(int i);
void slotActionHighlighted(KAction *, bool); void slotActionHighlighted(TDEAction *, bool);
void slotContextMenuRequested(int, int, const TQPoint &); void slotContextMenuRequested(int, int, const TQPoint &);
private: private:
@ -248,66 +248,66 @@ class KWordQuizApp : public KMainWindow
*/ */
KWordQuizDoc *doc; KWordQuizDoc *doc;
// KAction pointers to enable/disable actions // TDEAction pointers to enable/disable actions
KAction* fileNew; TDEAction* fileNew;
KAction* fileOpen; TDEAction* fileOpen;
KRecentFilesAction* fileOpenRecent; TDERecentFilesAction* fileOpenRecent;
KAction* fileGHNS; TDEAction* fileGHNS;
KAction* fileSave; TDEAction* fileSave;
KAction* fileSaveAs; TDEAction* fileSaveAs;
KAction* fileClose; TDEAction* fileClose;
KAction* filePrint; TDEAction* filePrint;
KAction* fileQuit; TDEAction* fileQuit;
KAction* editUndo; TDEAction* editUndo;
KAction* editCut; TDEAction* editCut;
KAction* editCopy; TDEAction* editCopy;
KAction* editPaste; TDEAction* editPaste;
KAction* editClear; TDEAction* editClear;
KAction* editInsert; TDEAction* editInsert;
KAction* editDelete; TDEAction* editDelete;
KAction* editMarkBlank; TDEAction* editMarkBlank;
KAction* editUnmarkBlank; TDEAction* editUnmarkBlank;
//KAction* editFind; //TDEAction* editFind;
KAction* vocabLanguages; TDEAction* vocabLanguages;
KAction* vocabFont; TDEAction* vocabFont;
//KAction* vocabKeyboard; //TDEAction* vocabKeyboard;
KAction* vocabRC; TDEAction* vocabRC;
KAction* vocabSort; TDEAction* vocabSort;
KAction* vocabShuffle; TDEAction* vocabShuffle;
KToolBarPopupAction* mode; TDEToolBarPopupAction* mode;
KToggleAction* mode1; TDEToggleAction* mode1;
KToggleAction* mode2; TDEToggleAction* mode2;
KToggleAction* mode3; TDEToggleAction* mode3;
KToggleAction* mode4; TDEToggleAction* mode4;
KToggleAction* mode5; TDEToggleAction* mode5;
KAction* quizEditor; TDEAction* quizEditor;
KAction* quizFlash; TDEAction* quizFlash;
KAction* quizMultiple; TDEAction* quizMultiple;
KAction* quizQA; TDEAction* quizQA;
KAction* quizCheck; TDEAction* quizCheck;
KAction* quizRestart; TDEAction* quizRestart;
KAction* quizRepeatErrors; TDEAction* quizRepeatErrors;
KAction* flashKnow; TDEAction* flashKnow;
KAction* flashDontKnow; TDEAction* flashDontKnow;
KAction* qaHint; TDEAction* qaHint;
TQSignalMapper* charMapper; TQSignalMapper* charMapper;
KAction* specialChar1; TDEAction* specialChar1;
KAction* specialChar2; TDEAction* specialChar2;
KAction* specialChar3; TDEAction* specialChar3;
KAction* specialChar4; TDEAction* specialChar4;
KAction* specialChar5; TDEAction* specialChar5;
KAction* specialChar6; TDEAction* specialChar6;
KAction* specialChar7; TDEAction* specialChar7;
KAction* specialChar8; TDEAction* specialChar8;
KAction* specialChar9; TDEAction* specialChar9;
KDirWatch * m_dirWatch; KDirWatch * m_dirWatch;
KWQNewStuff * m_newStuff; KWQNewStuff * m_newStuff;

@ -33,7 +33,7 @@ class KWordQuizView;
/** KWordQuizDoc provides a document object for a document-view model. /** KWordQuizDoc provides a document object for a document-view model.
* *
* The KWordQuizDoc class provides a document object that can be used in conjunction with the classes KWordQuizApp and KWordQuizView * The KWordQuizDoc class provides a document object that can be used in conjunction with the classes KWordQuizApp and KWordQuizView
* to create a document-view model for standard TDE applications based on TDEApplication and KMainWindow. Thereby, the document object * to create a document-view model for standard TDE applications based on TDEApplication and TDEMainWindow. Thereby, the document object
* is created by the KWordQuizApp instance and contains the document structure with the according methods for manipulation of the document * is created by the KWordQuizApp instance and contains the document structure with the according methods for manipulation of the document
* data by KWordQuizView objects. Also, KWordQuizDoc contains the methods for serialization of the document data from and to files. * data by KWordQuizView objects. Also, KWordQuizDoc contains the methods for serialization of the document data from and to files.
* *

@ -317,7 +317,7 @@
<property name="margin"> <property name="margin">
<number>0</number> <number>0</number>
</property> </property>
<widget class="KFontRequester" row="0" column="0"> <widget class="TDEFontRequester" row="0" column="0">
<property name="name"> <property name="name">
<cstring>kcfg_BackFont</cstring> <cstring>kcfg_BackFont</cstring>
</property> </property>
@ -400,7 +400,7 @@
<property name="margin"> <property name="margin">
<number>0</number> <number>0</number>
</property> </property>
<widget class="KFontRequester" row="0" column="0"> <widget class="TDEFontRequester" row="0" column="0">
<property name="name"> <property name="name">
<cstring>kcfg_FrontFont</cstring> <cstring>kcfg_FrontFont</cstring>
</property> </property>

@ -53,10 +53,10 @@ private:
WQQuiz *m_quiz; WQQuiz *m_quiz;
WTQScore *m_score; WTQScore *m_score;
KAction* actCheck; TDEAction* actCheck;
KAction* actHint; TDEAction* actHint;
KAction* actRepeat; TDEAction* actRepeat;
KAction* actRestart; TDEAction* actRestart;
int m_question; int m_question;
int m_error; int m_error;

@ -383,7 +383,7 @@ ExtDatePicker::selectYearClicked()
} }
int year; int year;
KPopupFrame* popup = new KPopupFrame(this); TDEPopupFrame* popup = new TDEPopupFrame(this);
ExtDateInternalYearSelector* picker = new ExtDateInternalYearSelector(popup); ExtDateInternalYearSelector* picker = new ExtDateInternalYearSelector(popup);
// ----- // -----
picker->resize(picker->sizeHint()); picker->resize(picker->sizeHint());

@ -450,7 +450,7 @@ ExtDateTable::contentsMousePressEvent(TQMouseEvent *e)
if ( e->button() == Qt::RightButton && d->popupMenuEnabled ) if ( e->button() == Qt::RightButton && d->popupMenuEnabled )
{ {
KPopupMenu *menu = new KPopupMenu(); TDEPopupMenu *menu = new TDEPopupMenu();
//FIXME: Uncomment the following line (and remove the one after it) //FIXME: Uncomment the following line (and remove the one after it)
// if ExtDate is added to tdelibs // if ExtDate is added to tdelibs
@ -873,7 +873,7 @@ ExtDateInternalYearSelector::setYear(int year)
setText(temp); setText(temp);
} }
KPopupFrame::KPopupFrame(TQWidget* parent, const char* name) TDEPopupFrame::TDEPopupFrame(TQWidget* parent, const char* name)
: TQFrame(parent, name, WType_Popup), : TQFrame(parent, name, WType_Popup),
result(0), // rejected result(0), // rejected
main(0) main(0)
@ -883,7 +883,7 @@ KPopupFrame::KPopupFrame(TQWidget* parent, const char* name)
} }
void void
KPopupFrame::keyPressEvent(TQKeyEvent* e) TDEPopupFrame::keyPressEvent(TQKeyEvent* e)
{ {
if(e->key()==Key_Escape) if(e->key()==Key_Escape)
{ {
@ -893,14 +893,14 @@ KPopupFrame::keyPressEvent(TQKeyEvent* e)
} }
void void
KPopupFrame::close(int r) TDEPopupFrame::close(int r)
{ {
result=r; result=r;
tqApp->exit_loop(); tqApp->exit_loop();
} }
void void
KPopupFrame::setMainWidget(TQWidget* m) TDEPopupFrame::setMainWidget(TQWidget* m)
{ {
main=m; main=m;
if(main!=0) if(main!=0)
@ -910,7 +910,7 @@ KPopupFrame::setMainWidget(TQWidget* m)
} }
void void
KPopupFrame::resizeEvent(TQResizeEvent*) TDEPopupFrame::resizeEvent(TQResizeEvent*)
{ {
if(main!=0) if(main!=0)
{ {
@ -920,7 +920,7 @@ KPopupFrame::resizeEvent(TQResizeEvent*)
} }
void void
KPopupFrame::popup(const TQPoint &pos) TDEPopupFrame::popup(const TQPoint &pos)
{ {
// Make sure the whole popup is visible. // Make sure the whole popup is visible.
TQRect d = TDEGlobalSettings::desktopGeometry(pos); TQRect d = TDEGlobalSettings::desktopGeometry(pos);
@ -944,7 +944,7 @@ KPopupFrame::popup(const TQPoint &pos)
} }
int int
KPopupFrame::exec(TQPoint pos) TDEPopupFrame::exec(TQPoint pos)
{ {
popup(pos); popup(pos);
repaint(); repaint();
@ -954,12 +954,12 @@ KPopupFrame::exec(TQPoint pos)
} }
int int
KPopupFrame::exec(int x, int y) TDEPopupFrame::exec(int x, int y)
{ {
return exec(TQPoint(x, y)); return exec(TQPoint(x, y));
} }
void KPopupFrame::virtual_hook( int, void* ) void TDEPopupFrame::virtual_hook( int, void* )
{ /*BASE::virtual_hook( id, data );*/ } { /*BASE::virtual_hook( id, data );*/ }
void ExtDateTable::virtual_hook( int, void* ) void ExtDateTable::virtual_hook( int, void* )

@ -31,7 +31,7 @@
#include <klineedit.h> #include <klineedit.h>
#include "extcalendarsystemgregorian.h" #include "extcalendarsystemgregorian.h"
class KPopupMenu; class TDEPopupMenu;
/** Week selection widget. /** Week selection widget.
* @internal * @internal
@ -177,7 +177,7 @@ private:
* @author Tim Gilman, Mirko Boehm * @author Tim Gilman, Mirko Boehm
* @version $Id$ * @version $Id$
*/ */
class KPopupFrame : public TQFrame class TDEPopupFrame : public TQFrame
{ {
Q_OBJECT Q_OBJECT
@ -204,7 +204,7 @@ public:
/** /**
* The contructor. Creates a dialog without buttons. * The contructor. Creates a dialog without buttons.
*/ */
KPopupFrame(TQWidget* parent=0, const char* name=0); TDEPopupFrame(TQWidget* parent=0, const char* name=0);
/** /**
* Set the main widget. You cannot set the main widget from the constructor, * Set the main widget. You cannot set the main widget from the constructor,
* since it must be a child of the frame itselfes. * since it must be a child of the frame itselfes.
@ -237,8 +237,8 @@ private:
protected: protected:
virtual void virtual_hook( int id, void* data ); virtual void virtual_hook( int id, void* data );
private: private:
class KPopupFramePrivate; class TDEPopupFramePrivate;
KPopupFramePrivate *d; TDEPopupFramePrivate *d;
}; };
/** /**
@ -420,7 +420,7 @@ signals:
* *
* @since 3.2 * @since 3.2
*/ */
void aboutToShowContextMenu( KPopupMenu * menu, const ExtDate &date); void aboutToShowContextMenu( TDEPopupMenu * menu, const ExtDate &date);
protected: protected:
virtual void virtual_hook( int id, void* data ); virtual void virtual_hook( int id, void* data );

@ -25,7 +25,7 @@
#include "extdatewidget.h" #include "extdatewidget.h"
#include "testwidget.h" #include "testwidget.h"
TestWidget::TestWidget( TQWidget *p=0, const char *name=0 ) : KMainWindow( p, name ) { TestWidget::TestWidget( TQWidget *p=0, const char *name=0 ) : TDEMainWindow( p, name ) {
TQWidget *w = new TQWidget(this); TQWidget *w = new TQWidget(this);
glay = new TQGridLayout(w, 3, 2); glay = new TQGridLayout(w, 3, 2);

@ -29,7 +29,7 @@ class TQGridLayout;
class TQDate; class TQDate;
class ExtDate; class ExtDate;
class TestWidget : public KMainWindow { class TestWidget : public TDEMainWindow {
Q_OBJECT Q_OBJECT
public: public:

@ -185,7 +185,7 @@ GlossaryDialog::GlossaryDialog( bool folded, TQWidget *parent, const char *name)
lbl->setText( i18n( "Search:" ) ); lbl->setText( i18n( "Search:" ) );
hbox->addWidget( lbl ); hbox->addWidget( lbl );
m_search = new KListViewSearchLine( plainPage(), 0, "search-line" ); m_search = new TDEListViewSearchLine( plainPage(), 0, "search-line" );
hbox->addWidget( m_search ); hbox->addWidget( m_search );
vbox->addLayout( hbox ); vbox->addLayout( hbox );
setFocusProxy(m_search); setFocusProxy(m_search);
@ -193,7 +193,7 @@ GlossaryDialog::GlossaryDialog( bool folded, TQWidget *parent, const char *name)
TQSplitter *vs = new TQSplitter( plainPage() ); TQSplitter *vs = new TQSplitter( plainPage() );
vbox->addWidget( vs ); vbox->addWidget( vs );
m_glosstree = new KListView( vs, "treeview" ); m_glosstree = new TDEListView( vs, "treeview" );
m_glosstree->addColumn( "entries" ); m_glosstree->addColumn( "entries" );
m_glosstree->header()->hide(); m_glosstree->header()->hide();
m_glosstree->setFullWidth( true ); m_glosstree->setFullWidth( true );

@ -22,9 +22,9 @@
class TQChar; class TQChar;
class TQDomDocument; class TQDomDocument;
class TQListViewItem; class TQListViewItem;
class KListView; class TDEListView;
class KListViewSearchLine; class TDEListViewSearchLine;
class KActionCollection; class TDEActionCollection;
class GlossaryItem; class GlossaryItem;
/** /**
@ -266,14 +266,14 @@ class GlossaryDialog : public KDialogBase
void updateTree(); void updateTree();
TDEHTMLPart *m_htmlpart; TDEHTMLPart *m_htmlpart;
KListView *m_glosstree; TDEListView *m_glosstree;
TQString m_htmlbasestring; TQString m_htmlbasestring;
KActionCollection* m_actionCollection; TDEActionCollection* m_actionCollection;
TQListViewItem* findTreeWithLetter( const TQChar&, TQListViewItem* ); TQListViewItem* findTreeWithLetter( const TQChar&, TQListViewItem* );
KListViewSearchLine *m_search; TDEListViewSearchLine *m_search;
private slots: private slots:
void slotClicked( TQListViewItem * ); void slotClicked( TQListViewItem * );

Loading…
Cancel
Save