Remove spurious TQ_OBJECT instances

pull/1/head
Timothy Pearson 13 years ago
parent 5f338f4e81
commit a0fd5320de

@ -26,7 +26,7 @@ class TQString;
class GuiPart : public TQObject, public TQCanvasRectangle class GuiPart : public TQObject, public TQCanvasRectangle
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
/** /**
* Create a GuiPart. Control the position using setGuiPartSize, instead * Create a GuiPart. Control the position using setGuiPartSize, instead
@ -95,7 +95,7 @@ class GuiPart : public TQObject, public TQCanvasRectangle
class Text : public GuiPart class Text : public GuiPart
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
Text( const TQString &text, CNItem *parent, const TQRect & r, TQCanvas * canvas, int flags = TQt::AlignHCenter | TQt::AlignVCenter ); Text( const TQString &text, CNItem *parent, const TQRect & r, TQCanvas * canvas, int flags = TQt::AlignHCenter | TQt::AlignVCenter );
~Text(); ~Text();
@ -206,7 +206,7 @@ class ToolButton : public TQToolButton
class Button : public Widget class Button : public Widget
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
Button( const TQString & id, CNItem *parent, bool isToggle, const TQRect & r, TQCanvas * canvas ); Button( const TQString & id, CNItem *parent, bool isToggle, const TQRect & r, TQCanvas * canvas );
~Button(); ~Button();
@ -262,7 +262,7 @@ class SliderWidget : public TQSlider
class Slider : public Widget class Slider : public Widget
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
Slider( const TQString & id, CNItem *parent, const TQRect & r, TQCanvas * canvas ); Slider( const TQString & id, CNItem *parent, const TQRect & r, TQCanvas * canvas );
~Slider(); ~Slider();

@ -69,7 +69,7 @@ Handles canvas manipulation, such as moving an item or resizing the canvas
class CMManager : public TQObject class CMManager : public TQObject
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
enum EventState enum EventState
{ {

@ -62,7 +62,7 @@ information from those simulations back on the ICNDocument
class CircuitDocument : public ICNDocument class CircuitDocument : public ICNDocument
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
CircuitDocument( const TQString &caption, KTechlab *ktechlab, const char *name = 0L ); CircuitDocument( const TQString &caption, KTechlab *ktechlab, const char *name = 0L );
~CircuitDocument(); ~CircuitDocument();

@ -21,7 +21,7 @@ class CircuitDocument;
class CircuitView : public ICNView class CircuitView : public ICNView
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
CircuitView( CircuitDocument *circuitDocument, ViewContainer *viewContainer, uint viewAreaId, const char *name = 0l ); CircuitView( CircuitDocument *circuitDocument, ViewContainer *viewContainer, uint viewAreaId, const char *name = 0l );
~CircuitView(); ~CircuitView();

@ -58,7 +58,7 @@ saving and editing of associated data, cutting / copying, etc)
class CNItem : public Item, public CIWidgetMgr class CNItem : public Item, public CIWidgetMgr
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
CNItem( ICNDocument *_icnView, bool newItem, const TQString &id ); CNItem( ICNDocument *_icnView, bool newItem, const TQString &id );
virtual ~CNItem(); virtual ~CNItem();

@ -37,7 +37,7 @@ typedef TQValueList<TQGuardedPtr<Connector> > ConnectorList;
class CNItemGroup : public ItemGroup class CNItemGroup : public ItemGroup
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
CNItemGroup( ICNDocument *icnDocument, const char *name = 0 ); CNItemGroup( ICNDocument *icnDocument, const char *name = 0 );
~CNItemGroup(); ~CNItemGroup();

@ -37,7 +37,7 @@ typedef TQValueVector<TQGuardedPtr<Wire> > WireVector;
class Connector : public TQObject, public TQCanvasPolygon class Connector : public TQObject, public TQCanvasPolygon
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
Connector( Node * startNode, Node * endNode, ICNDocument *_ICNDocument, TQString *id = 0L ); Connector( Node * startNode, Node * endNode, ICNDocument *_ICNDocument, TQString *id = 0L );
~Connector(); ~Connector();

@ -29,7 +29,7 @@ typedef TQValueList< TQGuardedPtr<GpsimProcessor> > GpsimProcessorList;
class DebugManager : public TQObject class DebugManager : public TQObject
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
static DebugManager * self(); static DebugManager * self();
~DebugManager(); ~DebugManager();

@ -37,7 +37,7 @@ typedef TQValueList<KAction*> KActionList;
class DocManager : public TQObject class DocManager : public TQObject
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
static DocManager * self( KTechlab * ktechlab = 0l ); static DocManager * self( KTechlab * ktechlab = 0l );
~DocManager(); ~DocManager();

@ -29,7 +29,7 @@ typedef TQValueList<TQGuardedPtr<View> > ViewList;
class Document : public TQObject class Document : public TQObject
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
enum DocumentType enum DocumentType
{ {

@ -76,7 +76,7 @@ typedef TQValueList<ElementMap> ElementMapList;
class Component : public CNItem class Component : public CNItem
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
Component( ICNDocument *icnDocument, bool newItem, const TQString &id ); Component( ICNDocument *icnDocument, bool newItem, const TQString &id );
virtual ~Component(); virtual ~Component();

@ -22,7 +22,7 @@
class ECSubcircuit : public Component class ECSubcircuit : public Component
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
ECSubcircuit( ICNDocument *icnDocument, bool newItem, const char *id = 0L ); ECSubcircuit( ICNDocument *icnDocument, bool newItem, const char *id = 0L );
~ECSubcircuit(); ~ECSubcircuit();

@ -41,7 +41,7 @@ typedef TQMap< int, PICComponentPin * > PICComponentPinMap;
class PICComponent : public Component class PICComponent : public Component
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
PICComponent( ICNDocument * icnDocument, bool newItem, const char *id = 0L ); PICComponent( ICNDocument * icnDocument, bool newItem, const char *id = 0L );
~PICComponent(); ~PICComponent();

@ -32,7 +32,7 @@ typedef TQValueVector<Pin*> PinVector;
class ECNode : public Node class ECNode : public Node
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
ECNode( ICNDocument *icnDocument, Node::node_type type, node_dir dir, const TQPoint &pos, TQString *id = 0L ); ECNode( ICNDocument *icnDocument, Node::node_type type, node_dir dir, const TQPoint &pos, TQString *id = 0L );
~ECNode(); ~ECNode();

@ -72,7 +72,7 @@ class DebugLine : public SourceLine
class RegisterInfo : public TQObject class RegisterInfo : public TQObject
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
RegisterInfo( Register * reg ); RegisterInfo( Register * reg );
@ -142,7 +142,7 @@ class GpsimDebugger : public TQObject
{ {
friend class GpsimProcessor; friend class GpsimProcessor;
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
enum Type enum Type
@ -247,7 +247,7 @@ class GpsimProcessor : public TQObject
{ {
friend class GpsimDebugger; friend class GpsimDebugger;
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
/** /**

@ -25,7 +25,7 @@ Interface for dealing with loading / saving / etc of subcircuits
class Subcircuits : public TQObject class Subcircuits : public TQObject
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
~Subcircuits(); ~Subcircuits();
/** /**

@ -26,7 +26,7 @@ class TQTimer;
class Switch : public TQObject class Switch : public TQObject
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
enum State enum State

@ -82,7 +82,7 @@ Looks after per-file metainfo; e.g. bookmarks, breakpoints, compiling options, e
class FileMetaInfo : public TQObject class FileMetaInfo : public TQObject
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
~FileMetaInfo(); ~FileMetaInfo();

@ -34,7 +34,7 @@ typedef TQMap<TQString, int > StringIntMap;
class FlowCodeDocument : public ICNDocument class FlowCodeDocument : public ICNDocument
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
FlowCodeDocument( const TQString &caption, KTechlab *ktechlab, const char *name = 0L); FlowCodeDocument( const TQString &caption, KTechlab *ktechlab, const char *name = 0L);
~FlowCodeDocument(); ~FlowCodeDocument();

@ -21,7 +21,7 @@ class FlowCodeDocument;
class FlowCodeView : public ICNView class FlowCodeView : public ICNView
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
FlowCodeView( FlowCodeDocument *flowCodeDocument, ViewContainer *viewContainer, uint viewAreaId, const char *name = 0l ); FlowCodeView( FlowCodeDocument *flowCodeDocument, ViewContainer *viewContainer, uint viewAreaId, const char *name = 0l );
~FlowCodeView(); ~FlowCodeView();

@ -21,7 +21,7 @@ class RectangularOverlay;
class FlowContainer : public FlowPart class FlowContainer : public FlowPart
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
FlowContainer( ICNDocument *_icnView, bool newItem, const TQString &id ); FlowContainer( ICNDocument *_icnView, bool newItem, const TQString &id );
virtual ~FlowContainer(); virtual ~FlowContainer();

@ -34,7 +34,7 @@ that you should reinherit for generating the assembly code.
class FlowPart : public CNItem class FlowPart : public CNItem
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
enum FlowSymbol enum FlowSymbol
{ {

@ -71,7 +71,7 @@ Dialog for editing a Pin Mapping
class PinMapEditor : public KDialogBase class PinMapEditor : public KDialogBase
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
PinMapEditor( PinMapping * PinMapping, MicroInfo * Info, TQWidget * parent, const char * name ); PinMapEditor( PinMapping * PinMapping, MicroInfo * Info, TQWidget * parent, const char * name );
@ -94,7 +94,7 @@ For use with FlowParts that require a pin map (e.g. Keypad and Seven Segment).
class PinMapDocument : public ICNDocument class PinMapDocument : public ICNDocument
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
PinMapDocument(); PinMapDocument();
~PinMapDocument(); ~PinMapDocument();
@ -122,7 +122,7 @@ class PinMapDocument : public ICNDocument
class PinMapView : public ICNView class PinMapView : public ICNView
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
PinMapView( PinMapDocument * pinMapDocument, ViewContainer * viewContainer, uint viewAreaId, const char * name = 0l ); PinMapView( PinMapDocument * pinMapDocument, ViewContainer * viewContainer, uint viewAreaId, const char * name = 0l );
~PinMapView(); ~PinMapView();

@ -26,7 +26,7 @@ always valid (eg not more than two outputs from one node, which makes no sense)
class FPNode : public Node class FPNode : public Node
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
FPNode( ICNDocument *_icnView, Node::node_type type, node_dir dir, const TQPoint &pos, TQString *id = 0L ); FPNode( ICNDocument *_icnView, Node::node_type type, node_dir dir, const TQPoint &pos, TQString *id = 0L );
~FPNode(); ~FPNode();

@ -23,7 +23,7 @@ which colours are displayed to be changed.
class ColorCombo : public TQComboBox class ColorCombo : public TQComboBox
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
TQ_PROPERTY( TQColor color READ color WRITE setColor ) TQ_PROPERTY( TQColor color READ color WRITE setColor )
public: public:

@ -30,7 +30,7 @@ in a ICNDocument.
class ContextHelp : public TQWidget class ContextHelp : public TQWidget
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
static ContextHelp * self( KateMDI::ToolView * parent = 0l ); static ContextHelp * self( KateMDI::ToolView * parent = 0l );
static TQString toolViewIdentifier() { return "ContextHelp"; } static TQString toolViewIdentifier() { return "ContextHelp"; }

@ -23,7 +23,7 @@ spin box plus the SI magnitude symbol it is showing
class DoubleSpinBox : public TQSpinBox class DoubleSpinBox : public TQSpinBox
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
DoubleSpinBox( double lower, double upper, double minAbs, double value, const TQString & unit, TQWidget * parent = 0 ); DoubleSpinBox( double lower, double upper, double minAbs, double value, const TQString & unit, TQWidget * parent = 0 );
virtual ~DoubleSpinBox(); virtual ~DoubleSpinBox();

@ -36,7 +36,7 @@ namespace KateMDI { class ToolView; }
class ItemEditor : public TQWidget class ItemEditor : public TQWidget
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
static ItemEditor * self( KateMDI::ToolView * parent = 0l ); static ItemEditor * self( KateMDI::ToolView * parent = 0l );
~ItemEditor(); ~ItemEditor();

@ -58,7 +58,7 @@ class ILVItem : public TQObject, public KListViewItem
class ItemSelector : public KListView class ItemSelector : public KListView
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
ItemSelector( TQWidget *parent, const char *name ); ItemSelector( TQWidget *parent, const char *name );
~ItemSelector(); ~ItemSelector();
@ -122,7 +122,7 @@ class ItemSelector : public KListView
class ComponentSelector : public ItemSelector class ComponentSelector : public ItemSelector
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
static ComponentSelector * self( KateMDI::ToolView * parent = 0l ); static ComponentSelector * self( KateMDI::ToolView * parent = 0l );
static TQString toolViewIdentifier() { return "ComponentSelector"; } static TQString toolViewIdentifier() { return "ComponentSelector"; }
@ -140,7 +140,7 @@ class ComponentSelector : public ItemSelector
class FlowPartSelector : public ItemSelector class FlowPartSelector : public ItemSelector
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
static FlowPartSelector * self( KateMDI::ToolView * parent = 0l ); static FlowPartSelector * self( KateMDI::ToolView * parent = 0l );
static TQString toolViewIdentifier() { return "FlowPartSelector"; } static TQString toolViewIdentifier() { return "FlowPartSelector"; }
@ -157,7 +157,7 @@ class FlowPartSelector : public ItemSelector
class MechanicsSelector : public ItemSelector class MechanicsSelector : public ItemSelector
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
static MechanicsSelector * self( KateMDI::ToolView * parent = 0l ); static MechanicsSelector * self( KateMDI::ToolView * parent = 0l );
static TQString toolViewIdentifier() { return "MechanicsSelector"; } static TQString toolViewIdentifier() { return "MechanicsSelector"; }

@ -42,7 +42,7 @@ Base class for logviews (eg GpasmInterface) which output information, warnings,
class LogView : public KTextEdit class LogView : public KTextEdit
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
LogView( KateMDI::ToolView * parent, const char *name = 0 ); LogView( KateMDI::ToolView * parent, const char *name = 0 );
~LogView(); ~LogView();

@ -27,7 +27,7 @@ class KComboBox;
class MicroSelectWidget : public TQGroupBox class MicroSelectWidget : public TQGroupBox
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
MicroSelectWidget( TQWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); MicroSelectWidget( TQWidget* parent = 0, const char* name = 0, WFlags fl = 0 );

@ -31,7 +31,7 @@ typedef TQMap< TQString, PinMapping > PinMappingMap;
class MicroSettingsDlg : public KDialogBase class MicroSettingsDlg : public KDialogBase
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
MicroSettingsDlg( MicroSettings *_microSettings, TQWidget *parent = 0L, const char *name = 0L ); MicroSettingsDlg( MicroSettings *_microSettings, TQWidget *parent = 0L, const char *name = 0L );
~MicroSettingsDlg(); ~MicroSettingsDlg();

@ -25,7 +25,7 @@ A standard dialog for getting file details from the user for a new project
class NewFileDlg : public KDialogBase class NewFileDlg : public KDialogBase
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
NewFileDlg( TQWidget *parent ); NewFileDlg( TQWidget *parent );

@ -25,7 +25,7 @@ class TQPushButton;
class OrientationWidget : public TQWidget class OrientationWidget : public TQWidget
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
OrientationWidget( TQWidget *parent = 0l, const char *name = 0l ); OrientationWidget( TQWidget *parent = 0l, const char *name = 0l );
~OrientationWidget(); ~OrientationWidget();

@ -76,7 +76,7 @@ void addOscilloscopeAsToolView( KTechlab *ktechlab );
class Oscilloscope : public OscilloscopeWidget class Oscilloscope : public OscilloscopeWidget
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
static Oscilloscope * self( KateMDI::ToolView * parent = 0l ); static Oscilloscope * self( KateMDI::ToolView * parent = 0l );
static TQString toolViewIdentifier() { return "Oscilloscope"; } static TQString toolViewIdentifier() { return "Oscilloscope"; }

@ -26,7 +26,7 @@ class TQTimer;
class OscilloscopeView : public TQFrame class OscilloscopeView : public TQFrame
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
OscilloscopeView( TQWidget *parent, const char *name = 0 ); OscilloscopeView( TQWidget *parent, const char *name = 0 );
virtual ~OscilloscopeView(); virtual ~OscilloscopeView();

@ -62,7 +62,7 @@ class OutputMethodInfo
class OutputMethodDlg : public KDialogBase class OutputMethodDlg : public KDialogBase
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
/** /**
* @param Caption The caption of the dialog window * @param Caption The caption of the dialog window

@ -30,7 +30,7 @@ class Variant;
class PIEditor : public TQWidget class PIEditor : public TQWidget
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
PIEditor(TQString id, Variant *data, TQWidget *parent = 0, const char *name = 0); PIEditor(TQString id, Variant *data, TQWidget *parent = 0, const char *name = 0);
~PIEditor(); ~PIEditor();
@ -53,7 +53,7 @@ class PIEditor : public TQWidget
class PIBool : public PIEditor class PIBool : public PIEditor
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
PIBool( TQString id, Variant *data, TQWidget *parent = 0, const char *name = 0 ); PIBool( TQString id, Variant *data, TQWidget *parent = 0, const char *name = 0 );
~PIBool(); ~PIBool();
@ -74,7 +74,7 @@ class PIBool : public PIEditor
class PIColor : public PIEditor class PIColor : public PIEditor
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
PIColor(TQString id, Variant *data, TQWidget *parent = 0, const char *name = 0); PIColor(TQString id, Variant *data, TQWidget *parent = 0, const char *name = 0);
~PIColor(); ~PIColor();
@ -96,7 +96,7 @@ Allows the editing of double precision numerical values, using the DoubleNum wid
class PIDouble : public PIEditor class PIDouble : public PIEditor
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
PIDouble(TQString id, Variant *data, TQWidget *parent = 0, const char *name = 0); PIDouble(TQString id, Variant *data, TQWidget *parent = 0, const char *name = 0);
~PIDouble(); ~PIDouble();
@ -116,7 +116,7 @@ class PIDouble : public PIEditor
class PIFilename : public PIEditor class PIFilename : public PIEditor
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
PIFilename(TQString id, Variant *data, TQWidget *parent = 0, const char *name = 0); PIFilename(TQString id, Variant *data, TQWidget *parent = 0, const char *name = 0);
~PIFilename(); ~PIFilename();
@ -138,7 +138,7 @@ class PIFilename : public PIEditor
class PIInt : public PIEditor class PIInt : public PIEditor
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
PIInt( const TQString &id, Variant *data, TQWidget *parent = 0, const char *name = 0); PIInt( const TQString &id, Variant *data, TQWidget *parent = 0, const char *name = 0);
~PIInt(); ~PIInt();
@ -158,7 +158,7 @@ class PIInt : public PIEditor
class PILineEdit : public PIEditor class PILineEdit : public PIEditor
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
PILineEdit(TQString id, Variant *data, TQWidget *parent = 0, const char *name = 0); PILineEdit(TQString id, Variant *data, TQWidget *parent = 0, const char *name = 0);
~PILineEdit(); ~PILineEdit();
@ -178,7 +178,7 @@ class PILineEdit : public PIEditor
class PIStringCombo : public PIEditor class PIStringCombo : public PIEditor
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
PIStringCombo(TQString id, Variant *data, TQWidget *parent, const char *name = 0); PIStringCombo(TQString id, Variant *data, TQWidget *parent, const char *name = 0);
~PIStringCombo(); ~PIStringCombo();

@ -27,7 +27,7 @@ Basic item, which holds the Variant data and Id for an item
class PLVItem : public TQObject, public KListViewItem class PLVItem : public TQObject, public KListViewItem
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
PLVItem( KListView *listview, const TQString &id, Variant * data ); PLVItem( KListView *listview, const TQString &id, Variant * data );
~PLVItem(); ~PLVItem();

@ -26,7 +26,7 @@ Widget for positioning the output of Probes in the OscilloscopeView
class ProbePositioner : public TQWidget class ProbePositioner : public TQWidget
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
ProbePositioner(TQWidget *parent = 0, const char *name = 0); ProbePositioner(TQWidget *parent = 0, const char *name = 0);
~ProbePositioner(); ~ProbePositioner();

@ -25,7 +25,7 @@ class ProgrammerWidget;
class ProgrammerDlg : public KDialogBase class ProgrammerDlg : public KDialogBase
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
/** /**
* Create a new ProgrammerDlg with the PIC type set to picID. Other * Create a new ProgrammerDlg with the PIC type set to picID. Other

@ -30,7 +30,7 @@ A standard dialog for getting project details from the user for a new project
class NewProjectDlg : public KDialogBase class NewProjectDlg : public KDialogBase
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
NewProjectDlg( TQWidget * parent ); NewProjectDlg( TQWidget * parent );
@ -73,7 +73,7 @@ class NewProjectDlg : public KDialogBase
class CreateSubprojectDlg : public KDialogBase class CreateSubprojectDlg : public KDialogBase
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
CreateSubprojectDlg( TQWidget *parent = 0 ); CreateSubprojectDlg( TQWidget *parent = 0 );
~CreateSubprojectDlg(); ~CreateSubprojectDlg();
@ -113,7 +113,7 @@ class CreateSubprojectDlg : public KDialogBase
class LinkerOptionsDlg : public KDialogBase class LinkerOptionsDlg : public KDialogBase
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
LinkerOptionsDlg( LinkerOptions * linkingOptions, TQWidget *parent = 0 ); LinkerOptionsDlg( LinkerOptions * linkingOptions, TQWidget *parent = 0 );
virtual ~LinkerOptionsDlg(); virtual ~LinkerOptionsDlg();

@ -29,7 +29,7 @@ typedef TQMap< TQString, PLVItem * > PLVItemMap;
class PropertiesListView : public KListView class PropertiesListView : public KListView
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
PropertiesListView( TQWidget *parent = 0l, const char *name = 0l ); PropertiesListView( TQWidget *parent = 0l, const char *name = 0l );
~PropertiesListView(); ~PropertiesListView();

@ -29,7 +29,7 @@ class SDCCOptionsWidget;
class SettingsDlg : public KConfigDialog class SettingsDlg : public KConfigDialog
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
SettingsDlg( TQWidget *parent, const char *name, KConfigSkeleton *config ); SettingsDlg( TQWidget *parent, const char *name, KConfigSkeleton *config );
~SettingsDlg(); ~SettingsDlg();

@ -30,7 +30,7 @@ namespace KateMDI { class ToolView; }
class SymbolViewer : public TQWidget class SymbolViewer : public TQWidget
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
static SymbolViewer * self( KateMDI::ToolView * parent = 0l ); static SymbolViewer * self( KateMDI::ToolView * parent = 0l );
static TQString toolViewIdentifier() { return "SymbolViewer"; } static TQString toolViewIdentifier() { return "SymbolViewer"; }
@ -87,7 +87,7 @@ class SymbolViewer : public TQWidget
class SymbolViewerItem : public TQObject, public KListViewItem class SymbolViewerItem : public TQObject, public KListViewItem
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
SymbolViewerItem( SymbolViewer * symbolViewer, RegisterInfo * registerInfo ); SymbolViewerItem( SymbolViewer * symbolViewer, RegisterInfo * registerInfo );

@ -34,7 +34,7 @@ typedef TQValueList<TQGuardedPtr<NodeGroup> > GuardedNodeGroupList;
class ICNDocument : public ItemDocument class ICNDocument : public ItemDocument
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
ICNDocument( const TQString &caption, KTechlab *ktechlab, const char *name ); ICNDocument( const TQString &caption, KTechlab *ktechlab, const char *name );
virtual ~ICNDocument(); virtual ~ICNDocument();

@ -23,7 +23,7 @@ class KToolBarPopupAction;
class ICNView : public ItemView class ICNView : public ItemView
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
ICNView( ICNDocument * icnDocument, ViewContainer *viewContainer, uint viewAreaId, const char * name = 0l ); ICNView( ICNDocument * icnDocument, ViewContainer *viewContainer, uint viewAreaId, const char * name = 0l );
~ICNView(); ~ICNView();

@ -41,7 +41,7 @@ typedef TQValueList<GuardedItem> ItemList;
class Item : public TQObject, public TQCanvasPolygon class Item : public TQObject, public TQCanvasPolygon
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
Item( ItemDocument *itemDocument, bool newItem, const TQString &id ); Item( ItemDocument *itemDocument, bool newItem, const TQString &id );
virtual ~Item(); virtual ~Item();

@ -42,7 +42,7 @@ typedef TQValueList<TQPoint> TQPointList;
class ItemDocument : public Document class ItemDocument : public Document
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
ItemDocument( const TQString &caption, KTechlab *ktechlab, const char *name = 0 ); ItemDocument( const TQString &caption, KTechlab *ktechlab, const char *name = 0 );
~ItemDocument(); ~ItemDocument();
@ -397,7 +397,7 @@ class ItemDocument : public Document
class Canvas : public TQCanvas class Canvas : public TQCanvas
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
Canvas( ItemDocument *itemDocument, const char * name = 0 ); Canvas( ItemDocument *itemDocument, const char * name = 0 );

@ -34,7 +34,7 @@ some functionality such as for dealing with item data
class ItemGroup : public TQObject class ItemGroup : public TQObject
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
ItemGroup( ItemDocument *view, const char *name = 0 ); ItemGroup( ItemDocument *view, const char *name = 0 );
virtual ~ItemGroup(); virtual ~ItemGroup();

@ -50,7 +50,7 @@ Items's, and the various objects that like to know about them
class ItemInterface : public TQObject class ItemInterface : public TQObject
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
~ItemInterface(); ~ItemInterface();
static ItemInterface * self( KTechlab * ktechlab = 0l ); static ItemInterface * self( KTechlab * ktechlab = 0l );

@ -26,7 +26,7 @@ class TQTimer;
class ItemView : public View class ItemView : public View
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
ItemView( ItemDocument *itemDocument, ViewContainer *viewContainer, uint viewAreaId, const char *name = 0 ); ItemView( ItemDocument *itemDocument, ViewContainer *viewContainer, uint viewAreaId, const char *name = 0 );
~ItemView(); ~ItemView();
@ -87,7 +87,7 @@ class ItemView : public View
class CVBEditor : public TQCanvasView class CVBEditor : public TQCanvasView
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
CVBEditor( TQCanvas *canvas, ItemView *itemView, const char *name ); CVBEditor( TQCanvas *canvas, ItemView *itemView, const char *name );

@ -36,7 +36,7 @@ namespace KateMDI {
class Splitter : public TQSplitter class Splitter : public TQSplitter
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
Splitter(Qt::Orientation o, TQWidget* parent=0, const char* name=0); Splitter(Qt::Orientation o, TQWidget* parent=0, const char* name=0);
@ -56,7 +56,7 @@ class Splitter : public TQSplitter
class ToggleToolViewAction : public KToggleAction class ToggleToolViewAction : public KToggleAction
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
ToggleToolViewAction ( const TQString& text, const KShortcut& cut, ToggleToolViewAction ( const TQString& text, const KShortcut& cut,
@ -75,7 +75,7 @@ class ToggleToolViewAction : public KToggleAction
class GUIClient : public TQObject, public KXMLGUIClient class GUIClient : public TQObject, public KXMLGUIClient
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
GUIClient ( class MainWindow *mw ); GUIClient ( class MainWindow *mw );
@ -94,7 +94,7 @@ class GUIClient : public TQObject, public KXMLGUIClient
class ToolView : public TQVBox class ToolView : public TQVBox
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
friend class Sidebar; friend class Sidebar;
friend class MainWindow; friend class MainWindow;
@ -169,7 +169,7 @@ class ToolView : public TQVBox
class Sidebar : public KMultiTabBar class Sidebar : public KMultiTabBar
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
Sidebar (KMultiTabBar::KMultiTabBarPosition pos, class MainWindow *mainwin, TQWidget *parent); Sidebar (KMultiTabBar::KMultiTabBarPosition pos, class MainWindow *mainwin, TQWidget *parent);
@ -245,7 +245,7 @@ class Sidebar : public KMultiTabBar
class MainWindow : public KParts::MainWindow class MainWindow : public KParts::MainWindow
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
friend class ToolView; friend class ToolView;

@ -46,7 +46,7 @@ class TQLabel;
class KTechlab : public KateMDI::MainWindow class KTechlab : public KateMDI::MainWindow
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
KTechlab(); KTechlab();
~KTechlab(); ~KTechlab();

@ -25,7 +25,7 @@ class provides functionality for dealing with external processes.
class ExternalLanguage : public Language class ExternalLanguage : public Language
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
ExternalLanguage( ProcessChain *processChain, KTechlab *parent, const TQString &name ); ExternalLanguage( ProcessChain *processChain, KTechlab *parent, const TQString &name );
~ExternalLanguage(); ~ExternalLanguage();

@ -54,7 +54,7 @@ class ProcessOptionsSpecial
class ProcessOptionsHelper : public TQObject class ProcessOptionsHelper : public TQObject
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
#define protected public #define protected public
signals: signals:
#undef protected #undef protected
@ -204,7 +204,7 @@ class ProcessOptions : public ProcessOptionsSpecial
class Language : public TQObject class Language : public TQObject
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
Language( ProcessChain *processChain, KTechlab *parent, const TQString &name ); Language( ProcessChain *processChain, KTechlab *parent, const TQString &name );
~Language(); ~Language();

@ -36,7 +36,7 @@ namespace KateMDI { class ToolView; }
class LanguageManager : public TQObject class LanguageManager : public TQObject
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
static LanguageManager * self( KateMDI::ToolView * parent = 0l, KTechlab * ktl = 0l ); static LanguageManager * self( KateMDI::ToolView * parent = 0l, KTechlab * ktl = 0l );
static TQString toolViewIdentifier() { return "LanguageManager"; } static TQString toolViewIdentifier() { return "LanguageManager"; }

@ -35,7 +35,7 @@ typedef TQValueList<ProcessOptions> ProcessOptionsList;
class ProcessChain : public TQObject class ProcessChain : public TQObject
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
ProcessChain( ProcessOptions options, KTechlab *parent, const char *name = 0l ); ProcessChain( ProcessOptions options, KTechlab *parent, const char *name = 0l );
~ProcessChain(); ~ProcessChain();
@ -102,7 +102,7 @@ class ProcessChain : public TQObject
class ProcessListChain : public TQObject class ProcessListChain : public TQObject
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
ProcessListChain( ProcessOptionsList pol, KTechlab *parent, const char *name = 0l ); ProcessListChain( ProcessOptionsList pol, KTechlab *parent, const char *name = 0l );

@ -27,7 +27,7 @@ typedef TQValueList<MechanicsItem*> MechanicsItemList;
class MechanicsDocument : public ItemDocument class MechanicsDocument : public ItemDocument
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
MechanicsDocument( const TQString &caption, KTechlab *ktechlab, const char *name = 0 ); MechanicsDocument( const TQString &caption, KTechlab *ktechlab, const char *name = 0 );
~MechanicsDocument(); ~MechanicsDocument();

@ -24,7 +24,7 @@ typedef TQValueList<MechanicsItem*> MechanicsItemList;
class MechanicsGroup : public ItemGroup class MechanicsGroup : public ItemGroup
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
MechanicsGroup( MechanicsDocument *mechanicsDocument, const char *name = 0); MechanicsGroup( MechanicsDocument *mechanicsDocument, const char *name = 0);
~MechanicsGroup(); ~MechanicsGroup();

@ -118,7 +118,7 @@ protected:
class MechanicsItem : public Item class MechanicsItem : public Item
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
MechanicsItem( MechanicsDocument *mechanicsDocument, bool newItem, const TQString &id ); MechanicsItem( MechanicsDocument *mechanicsDocument, bool newItem, const TQString &id );
virtual ~MechanicsItem(); virtual ~MechanicsItem();

@ -58,7 +58,7 @@ public:
class MechanicsSimulation : public TQObject class MechanicsSimulation : public TQObject
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
MechanicsSimulation( MechanicsDocument *mechanicsDocument ); MechanicsSimulation( MechanicsDocument *mechanicsDocument );
~MechanicsSimulation(); ~MechanicsSimulation();

@ -21,7 +21,7 @@ class MechanicsDocument;
class MechanicsView : public ItemView class MechanicsView : public ItemView
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
MechanicsView( MechanicsDocument *mechanicsDocument, ViewContainer *viewContainer, uint viewAreaId, const char *name = 0l ); MechanicsView( MechanicsDocument *mechanicsDocument, ViewContainer *viewContainer, uint viewAreaId, const char *name = 0l );
~MechanicsView(); ~MechanicsView();

@ -56,7 +56,7 @@ typedef TQMap< TQString, VariableInfo > VariableMap; // Variable name, variable
class PinSettings : public TQObject class PinSettings : public TQObject
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
enum pin_type enum pin_type
{ {
@ -110,7 +110,7 @@ This is different from PIC info, which includes stuff such as PIC pin names
class MicroSettings : public TQObject class MicroSettings : public TQObject
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
enum VariableType enum VariableType
{ {

@ -34,7 +34,7 @@ typedef TQValueList<TQGuardedPtr<Node> > NodeList;
class Node : public TQObject, public TQCanvasPolygon class Node : public TQObject, public TQCanvasPolygon
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
/** /**
* Used for run-time identification of the node: * Used for run-time identification of the node:

@ -36,7 +36,7 @@ along with their associated connectors.
class NodeGroup : public TQObject class NodeGroup : public TQObject
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
NodeGroup( ICNDocument *icnDocument, const char *name = 0); NodeGroup( ICNDocument *icnDocument, const char *name = 0);
~NodeGroup(); ~NodeGroup();

@ -209,7 +209,7 @@ class StoredData
class ProbeData : public TQObject class ProbeData : public TQObject
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
ProbeData( int id ); ProbeData( int id );

@ -26,7 +26,7 @@ class PinSettings;
class PinItem : public TQObject, public TQCanvasRectangle class PinItem : public TQObject, public TQCanvasRectangle
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
PinItem( FlowCodeDocument* _view, TQPoint position, bool _onLeft, PinSettings *_pinSettings ); PinItem( FlowCodeDocument* _view, TQPoint position, bool _onLeft, PinSettings *_pinSettings );
@ -67,7 +67,7 @@ Allows visual editing of inital PIC settings
class PicItem : public CNItem class PicItem : public CNItem
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
PicItem( ICNDocument *icnDocument, bool newItem, const char *id, MicroSettings *_microSettings ); PicItem( ICNDocument *icnDocument, bool newItem, const char *id, MicroSettings *_microSettings );
~PicItem(); ~PicItem();

@ -238,7 +238,7 @@ class ProjectItem : public TQObject, public LinkerOptions, public ProcessingOpti
class ProjectInfo : public ProjectItem class ProjectInfo : public ProjectItem
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
ProjectInfo( ProjectManager * projectManager, KTechlab * ktechlab ); ProjectInfo( ProjectManager * projectManager, KTechlab * ktechlab );
@ -267,7 +267,7 @@ class ProjectInfo : public ProjectItem
class ProjectManager : public ItemSelector class ProjectManager : public ItemSelector
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
~ProjectManager(); ~ProjectManager();
static ProjectManager * self( KTechlab * ktl = 0l, KateMDI::ToolView * parent = 0l ); static ProjectManager * self( KTechlab * ktl = 0l, KateMDI::ToolView * parent = 0l );

@ -20,7 +20,7 @@ Adapted to work around strange bug occuring.
class RecentFilesAction : public KSelectAction class RecentFilesAction : public KSelectAction
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
RecentFilesAction( const TQString & configGroupName, const TQString & text, const TQObject * receiver, const char* slot, TQObject* parent, const char * name ); RecentFilesAction( const TQString & configGroupName, const TQString & text, const TQObject * receiver, const char* slot, TQObject* parent, const char * name );

@ -32,7 +32,7 @@ typedef TQMap< int, TQGuardedPtr<ResizeHandle> > ResizeHandleMap;
class ResizeHandle : public TQObject, public TQCanvasRectangle class ResizeHandle : public TQObject, public TQCanvasRectangle
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
/** /**
* Convenience enumeration for resize handle positioning. Note: this class * Convenience enumeration for resize handle positioning. Note: this class
@ -117,7 +117,7 @@ typedef TQValueList<ResizeHandle*> ResizeHandleList;
class ResizeOverlay : public TQObject class ResizeOverlay : public TQObject
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
ResizeOverlay( Item *parent ); ResizeOverlay( Item *parent );
~ResizeOverlay(); ~ResizeOverlay();
@ -191,7 +191,7 @@ protected:
class MechanicsItemOverlay : public ResizeOverlay class MechanicsItemOverlay : public ResizeOverlay
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
MechanicsItemOverlay( MechanicsItem *parent ); MechanicsItemOverlay( MechanicsItem *parent );
~MechanicsItemOverlay(); ~MechanicsItemOverlay();
@ -222,7 +222,7 @@ protected:
class RectangularOverlay : public ResizeOverlay class RectangularOverlay : public ResizeOverlay
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
RectangularOverlay( Item *item, int xsnap = 1, int ysnap = 1 ); RectangularOverlay( Item *item, int xsnap = 1, int ysnap = 1 );
void removeTopMiddle(); void removeTopMiddle();
@ -261,7 +261,7 @@ protected:
class LineOverlay : public ResizeOverlay class LineOverlay : public ResizeOverlay
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
LineOverlay( Item * parent ); LineOverlay( Item * parent );
TQPoint startPoint() const; TQPoint startPoint() const;

@ -83,7 +83,7 @@ logic, external simulators (such as gpsim), mechanical simulation, etc).
class Simulator : public TQObject class Simulator : public TQObject
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
static Simulator * self(); static Simulator * self();
~Simulator(); ~Simulator();

@ -30,7 +30,7 @@ typedef TQValueList<int> IntList;
class TextDocument : public Document class TextDocument : public Document
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
~TextDocument(); ~TextDocument();

@ -31,7 +31,7 @@ class VariableLabel;
class TextView : public View class TextView : public View
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
TextView( TextDocument *textDocument, ViewContainer *viewContainer, uint viewAreaId, const char *name = 0 ); TextView( TextDocument *textDocument, ViewContainer *viewContainer, uint viewAreaId, const char *name = 0 );
~TextView(); ~TextView();
@ -104,7 +104,7 @@ over (used in the debugger).
class TextViewEventFilter : public TQObject class TextViewEventFilter : public TQObject
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
TextViewEventFilter( TextView * textView ); TextViewEventFilter( TextView * textView );

@ -29,7 +29,7 @@ a variable while debugging.
class VariableLabel : public TQLabel class VariableLabel : public TQLabel
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
VariableLabel( TextView * parent ); VariableLabel( TextView * parent );
/** /**

@ -27,7 +27,7 @@ contained. e.g. returns TQVariant::Color or TQVariant::Rect
class Variant : public TQObject class Variant : public TQObject
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
class Type class Type
{ {

@ -29,7 +29,7 @@ class TQVBoxLayout;
class ViewStatusBar : public KStatusBar class ViewStatusBar : public KStatusBar
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
ViewStatusBar( View *view ); ViewStatusBar( View *view );
@ -61,7 +61,7 @@ protected:
class View : public TQWidget, public KXMLGUIClient class View : public TQWidget, public KXMLGUIClient
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
View( Document *document, ViewContainer *viewContainer, uint viewAreaId, const char *name = 0 ); View( Document *document, ViewContainer *viewContainer, uint viewAreaId, const char *name = 0 );
virtual ~View(); virtual ~View();

@ -50,7 +50,7 @@ If it contains two ViewAreas, then the value returned by id() is -1.
class ViewArea : public TQSplitter class ViewArea : public TQSplitter
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
enum Position enum Position
{ {
@ -113,7 +113,7 @@ protected:
class ViewContainer : public TQWidget class ViewContainer : public TQWidget
{ {
Q_OBJECT Q_OBJECT
TQ_OBJECT
public: public:
/** /**
* Constructs a new ViewContainer, along with a default ViewArea ready for * Constructs a new ViewContainer, along with a default ViewArea ready for

Loading…
Cancel
Save