Replace Q_OBJECT with TQ_OBJECT

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
pull/5/head
Michele Calgaro 10 months ago
parent 6c221fd5e7
commit 377a74382c
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -25,7 +25,7 @@ class TQString;
class GuiPart : public TQObject, public TQCanvasRectangle
{
Q_OBJECT
TQ_OBJECT
public:
/**
@ -94,7 +94,7 @@ class GuiPart : public TQObject, public TQCanvasRectangle
*/
class Text : public GuiPart
{
Q_OBJECT
TQ_OBJECT
public:
Text( const TQString &text, CNItem *parent, const TQRect & r, TQCanvas * canvas, int flags = TQt::AlignHCenter | TQt::AlignVCenter );
@ -205,7 +205,7 @@ class ToolButton : public TQToolButton
*/
class Button : public Widget
{
Q_OBJECT
TQ_OBJECT
public:
Button( const TQString & id, CNItem *parent, bool isToggle, const TQRect & r, TQCanvas * canvas );
@ -261,7 +261,7 @@ class SliderWidget : public TQSlider
*/
class Slider : public Widget
{
Q_OBJECT
TQ_OBJECT
public:
Slider( const TQString & id, CNItem *parent, const TQRect & r, TQCanvas * canvas );

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

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

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

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

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

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

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

@ -36,7 +36,7 @@ typedef TQValueList<TDEAction*> TDEActionList;
*/
class DocManager : public TQObject
{
Q_OBJECT
TQ_OBJECT
public:
static DocManager * self( KTechlab * ktechlab = 0l );

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

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

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

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

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

@ -73,7 +73,7 @@ class DebugLine : public SourceLine
*/
class RegisterInfo : public TQObject
{
Q_OBJECT
TQ_OBJECT
public:
RegisterInfo( Register * reg );
@ -143,7 +143,7 @@ class RegisterSet
class GpsimDebugger : public TQObject
{
friend class GpsimProcessor;
Q_OBJECT
TQ_OBJECT
public:
@ -248,7 +248,7 @@ class GpsimDebugger : public TQObject
class GpsimProcessor : public TQObject
{
friend class GpsimDebugger;
Q_OBJECT
TQ_OBJECT
public:

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

@ -25,7 +25,7 @@ class TQTimer;
*/
class Switch : public TQObject
{
Q_OBJECT
TQ_OBJECT
public:

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

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

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

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

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

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

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

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

@ -29,7 +29,7 @@ in a ICNDocument.
*/
class ContextHelp : public TQWidget
{
Q_OBJECT
TQ_OBJECT
public:
static ContextHelp * self( KateMDI::ToolView * parent = 0l );

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

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

@ -57,7 +57,7 @@ class ILVItem : public TQObject, public TDEListViewItem
*/
class ItemSelector : public TDEListView
{
Q_OBJECT
TQ_OBJECT
public:
ItemSelector( TQWidget *parent, const char *name );
@ -121,7 +121,7 @@ class ItemSelector : public TDEListView
*/
class ComponentSelector : public ItemSelector
{
Q_OBJECT
TQ_OBJECT
public:
static ComponentSelector * self( KateMDI::ToolView * parent = 0l );
@ -139,7 +139,7 @@ class ComponentSelector : public ItemSelector
*/
class FlowPartSelector : public ItemSelector
{
Q_OBJECT
TQ_OBJECT
public:
static FlowPartSelector * self( KateMDI::ToolView * parent = 0l );
@ -156,7 +156,7 @@ class FlowPartSelector : public ItemSelector
*/
class MechanicsSelector : public ItemSelector
{
Q_OBJECT
TQ_OBJECT
public:
static MechanicsSelector * self( KateMDI::ToolView * parent = 0l );

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

@ -26,7 +26,7 @@ class KComboBox;
*/
class MicroSelectWidget : public TQGroupBox
{
Q_OBJECT
TQ_OBJECT
public:

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

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

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

@ -75,7 +75,7 @@ void addOscilloscopeAsToolView( KTechlab *ktechlab );
*/
class Oscilloscope : public OscilloscopeWidget
{
Q_OBJECT
TQ_OBJECT
public:
static Oscilloscope * self( KateMDI::ToolView * parent = 0l );

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

@ -61,7 +61,7 @@ class OutputMethodInfo
*/
class OutputMethodDlg : public KDialogBase
{
Q_OBJECT
TQ_OBJECT
public:
/**

@ -29,7 +29,7 @@ class Variant;
*/
class PIEditor : public TQWidget
{
Q_OBJECT
TQ_OBJECT
public:
PIEditor(TQString id, Variant *data, TQWidget *parent = 0, const char *name = 0);
@ -52,7 +52,7 @@ class PIEditor : public TQWidget
*/
class PIBool : public PIEditor
{
Q_OBJECT
TQ_OBJECT
public:
PIBool( TQString id, Variant *data, TQWidget *parent = 0, const char *name = 0 );
@ -73,7 +73,7 @@ class PIBool : public PIEditor
*/
class PIColor : public PIEditor
{
Q_OBJECT
TQ_OBJECT
public:
PIColor(TQString id, Variant *data, TQWidget *parent = 0, const char *name = 0);
@ -95,7 +95,7 @@ Allows the editing of double precision numerical values, using the DoubleNum wid
*/
class PIDouble : public PIEditor
{
Q_OBJECT
TQ_OBJECT
public:
PIDouble(TQString id, Variant *data, TQWidget *parent = 0, const char *name = 0);
@ -115,7 +115,7 @@ class PIDouble : public PIEditor
*/
class PIFilename : public PIEditor
{
Q_OBJECT
TQ_OBJECT
public:
PIFilename(TQString id, Variant *data, TQWidget *parent = 0, const char *name = 0);
@ -137,7 +137,7 @@ class PIFilename : public PIEditor
*/
class PIInt : public PIEditor
{
Q_OBJECT
TQ_OBJECT
public:
PIInt( const TQString &id, Variant *data, TQWidget *parent = 0, const char *name = 0);
@ -157,7 +157,7 @@ class PIInt : public PIEditor
*/
class PILineEdit : public PIEditor
{
Q_OBJECT
TQ_OBJECT
public:
PILineEdit(TQString id, Variant *data, TQWidget *parent = 0, const char *name = 0);
@ -177,7 +177,7 @@ class PILineEdit : public PIEditor
*/
class PIStringCombo : public PIEditor
{
Q_OBJECT
TQ_OBJECT
public:
PIStringCombo(TQString id, Variant *data, TQWidget *parent, const char *name = 0);

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

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

@ -24,7 +24,7 @@ class ProgrammerWidget;
*/
class ProgrammerDlg : public KDialogBase
{
Q_OBJECT
TQ_OBJECT
public:
/**

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

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

@ -28,7 +28,7 @@ class SDCCOptionsWidget;
*/
class SettingsDlg : public TDEConfigDialog
{
Q_OBJECT
TQ_OBJECT
public:
SettingsDlg( TQWidget *parent, const char *name, TDEConfigSkeleton *config );

@ -31,7 +31,7 @@ namespace KateMDI { class ToolView; }
*/
class SymbolViewer : public TQWidget
{
Q_OBJECT
TQ_OBJECT
public:
static SymbolViewer * self( KateMDI::ToolView * parent = 0l );
@ -88,7 +88,7 @@ class SymbolViewer : public TQWidget
class SymbolViewerItem : public TQObject, public TDEListViewItem
{
Q_OBJECT
TQ_OBJECT
public:
SymbolViewerItem( SymbolViewer * symbolViewer, RegisterInfo * registerInfo );

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

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

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

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

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

@ -49,7 +49,7 @@ Items's, and the various objects that like to know about them
*/
class ItemInterface : public TQObject
{
Q_OBJECT
TQ_OBJECT
public:
~ItemInterface();

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

@ -35,7 +35,7 @@ namespace KateMDI {
/** This class is needed because TQSplitter cant return an index for a widget. */
class Splitter : public TQSplitter
{
Q_OBJECT
TQ_OBJECT
public:
@ -55,7 +55,7 @@ class Splitter : public TQSplitter
class ToggleToolViewAction : public TDEToggleAction
{
Q_OBJECT
TQ_OBJECT
public:
@ -74,7 +74,7 @@ class ToggleToolViewAction : public TDEToggleAction
class GUIClient : public TQObject, public KXMLGUIClient
{
Q_OBJECT
TQ_OBJECT
public:
@ -93,7 +93,7 @@ class GUIClient : public TQObject, public KXMLGUIClient
class ToolView : public TQVBox
{
Q_OBJECT
TQ_OBJECT
friend class Sidebar;
@ -168,7 +168,7 @@ class ToolView : public TQVBox
class Sidebar : public KMultiTabBar
{
Q_OBJECT
TQ_OBJECT
public:
@ -244,7 +244,7 @@ class Sidebar : public KMultiTabBar
class MainWindow : public KParts::MainWindow
{
Q_OBJECT
TQ_OBJECT
friend class ToolView;

@ -45,7 +45,7 @@ class TQLabel;
*/
class KTechlab : public KateMDI::MainWindow
{
Q_OBJECT
TQ_OBJECT
public:
KTechlab();

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

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

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

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

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

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

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

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

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

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

@ -33,7 +33,7 @@ typedef TQValueList<TQGuardedPtr<Node> > NodeList;
*/
class Node : public TQObject, public TQCanvasPolygon
{
Q_OBJECT
TQ_OBJECT
public:
/**

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

@ -208,7 +208,7 @@ class StoredData
*/
class ProbeData : public TQObject
{
Q_OBJECT
TQ_OBJECT
public:

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

@ -237,7 +237,7 @@ class ProjectItem : public TQObject, public LinkerOptions, public ProcessingOpti
*/
class ProjectInfo : public ProjectItem
{
Q_OBJECT
TQ_OBJECT
public:
@ -266,7 +266,7 @@ class ProjectInfo : public ProjectItem
*/
class ProjectManager : public ItemSelector
{
Q_OBJECT
TQ_OBJECT
public:
~ProjectManager();

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

@ -31,7 +31,7 @@ typedef TQMap< int, TQGuardedPtr<ResizeHandle> > ResizeHandleMap;
*/
class ResizeHandle : public TQObject, public TQCanvasRectangle
{
Q_OBJECT
TQ_OBJECT
public:
/**
@ -116,7 +116,7 @@ typedef TQValueList<ResizeHandle*> ResizeHandleList;
*/
class ResizeOverlay : public TQObject
{
Q_OBJECT
TQ_OBJECT
public:
ResizeOverlay( Item *parent );
@ -190,7 +190,7 @@ protected:
*/
class MechanicsItemOverlay : public ResizeOverlay
{
Q_OBJECT
TQ_OBJECT
public:
MechanicsItemOverlay( MechanicsItem *parent );
@ -221,7 +221,7 @@ protected:
*/
class RectangularOverlay : public ResizeOverlay
{
Q_OBJECT
TQ_OBJECT
public:
RectangularOverlay( Item *item, int xsnap = 1, int ysnap = 1 );
@ -260,7 +260,7 @@ protected:
*/
class LineOverlay : public ResizeOverlay
{
Q_OBJECT
TQ_OBJECT
public:
LineOverlay( Item * parent );

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

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

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

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

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

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

@ -49,7 +49,7 @@ If it contains two ViewAreas, then the value returned by id() is -1.
*/
class ViewArea : public TQSplitter
{
Q_OBJECT
TQ_OBJECT
public:
enum Position
@ -112,7 +112,7 @@ protected:
*/
class ViewContainer : public TQWidget
{
Q_OBJECT
TQ_OBJECT
public:
/**

Loading…
Cancel
Save