1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
|
/****************************************************************************
**
** Definition of TQApplication class
**
** Created : 931107
**
** Copyright (C) 2010 Timothy Pearson and (C) 1992-2008 Trolltech ASA.
**
** This file is part of the kernel module of the TQt GUI Toolkit.
**
** This file may be used under the terms of the GNU General
** Public License versions 2.0 or 3.0 as published by the Free
** Software Foundation and appearing in the files LICENSE.GPL2
** and LICENSE.GPL3 included in the packaging of this file.
** Alternatively you may (at your option) use any later version
** of the GNU General Public License if such license has been
** publicly approved by Trolltech ASA (or its successors, if any)
** and the KDE Free TQt Foundation.
**
** Please review the following information to ensure GNU General
** Public Licensing requirements will be met:
** http://trolltech.com/products/qt/licenses/licensing/opensource/.
** If you are unsure which license is appropriate for your use, please
** review the following information:
** http://trolltech.com/products/qt/licenses/licensing/licensingoverview
** or contact the sales department at sales@trolltech.com.
**
** This file may be used under the terms of the Q Public License as
** defined by Trolltech ASA and appearing in the file LICENSE.TQPL
** included in the packaging of this file. Licensees holding valid TQt
** Commercial licenses may use this file in accordance with the TQt
** Commercial License Agreement provided with the Software.
**
** This file is provided "AS IS" with NO WARRANTY OF ANY KIND,
** INCLUDING THE WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR
** A PARTICULAR PURPOSE. Trolltech reserves all rights not granted
** herein.
**
**********************************************************************/
#ifndef TQAPPLICATION_H
#define TQAPPLICATION_H
#include "tqtglobaldefines.h"
#ifndef TQT_H
#include "tqdesktopwidget.h"
#include "tqasciidict.h"
#include "tqpalette.h"
#include "tqtranslator.h"
#include "tqstrlist.h"
#include "tqstringlist.h"
#include "tqwidgetlist.h"
#include "tqclipboard.h"
#include "tqcursor.h"
#endif // TQT_H
#ifdef USE_QT4
#include "private/qt4_qapplication_p.h"
#include <Qt/qapplication.h>
#include <Qt/qstyle.h>
#endif // USE_QT4
class TQSessionManager;
class TQStyle;
class TQTranslator;
class TQEventLoop;
#if defined(TQ_WS_X11)
class TQIMEvent;
#endif
#if defined(TQ_WS_TQWS)
class TQWSDecoration;
#endif
#ifdef TQT_THREAD_SUPPORT
class TQMutex;
#endif // TQT_THREAD_SUPPORT
#ifdef USE_QT4
#define TQAPPLICATION_GUI_VAR_INIT if (( QApplication::type() != QApplication::GuiClient ) && ( QApplication::type() != QApplication::GuiServer )) { qt_is_gui_used = FALSE; } else { qt_is_gui_used = TRUE; } tqAppReal = static_cast<TQApplication*>(qApp);
#define TQAPPLICATION_GUI_CONDITIONAL_VAR_INIT if (GUIenabled == false) { qt_is_gui_used = FALSE; } else { qt_is_gui_used = TRUE; } tqAppReal = static_cast<TQApplication*>(qApp);
#define TQAPPLICATION_XORG_FULL_INIT if (qt_is_gui_used == true) { qt_init( dpy, visual, cmap ); }
#define TQAPPLICATION_XORG_PARTIAL_INIT qt_init( &argc, argv, t );
#define TQAPPLICATION_XORG_CONDITIONAL_INIT if (GUIenabled == true) { qt_init( &argc, argv, QApplication::GuiClient ); }
#define TQAPPLICATION_REGISTER_TQ_DATATYPES qRegisterMetaType<TQChar>("TQChar"); \
qRegisterMetaType<TQString>("TQString"); \
qRegisterMetaType<TQColor>("TQColor");
class TQApplication;
extern TQ_EXPORT TQApplication *tqAppReal; // global application object
#define tqApp tqAppReal
class TQ_EXPORT TQApplication : public QApplication, virtual public TQt
{
Q_OBJECT
TQ_OBJECT
public:
TQApplication( int &argc, char **argv );
TQApplication( int &argc, char **argv, bool GUIenabled );
TQApplication( int &argc, char **argv, Type t );
#if defined(TQ_WS_X11)
TQApplication( Display* dpy, Qt::HANDLE visual = 0, Qt::HANDLE cmap = 0 );
TQApplication( Display *dpy, int argc, char **argv, Qt::HANDLE visual = 0, Qt::HANDLE cmap= 0 );
#endif
#ifndef Q_QDOC
enum ColorMode { NormalColors, CustomColors };
static ColorMode colorMode();
static void setColorMode( TQApplication::ColorMode );
#endif
int exec();
const char *tqname() const;
const char *name() const;
const char *name(const char *defaultName) const;
void setName(const char *aName);
virtual void commitData( TQSessionManager& sm );
virtual void saveState( TQSessionManager& sm );
// Qt4 session manager interconnect
virtual void commitData( QSessionManager& sm );
virtual void saveState( QSessionManager& sm );
static void exit_loop();
static int enter_loop();
static void processOneEvent();
void tqprocessEvents();
void tqprocessEvents( int maxtime );
int loopLevel() const;
static void flushX();
TQWidget *tqfocusWidget() const;
static TQWidget *widgetAt( const TQPoint &p, bool child=FALSE );
static TQWidget *widgetAt( int x, int y, bool child=FALSE );
static int horizontalAlignment( int align );
static void sendPostedEvents( QObject *receiver, int event_type );
static void sendPostedEvents();
#ifndef TQT_NO_CURSOR
// static void setOverrideCursor( const QCursor &cur, bool tqreplace=FALSE );
static void setOverrideCursor( const QCursor &cur, bool tqreplace=FALSE );
#endif
static void setReverseLayout(bool b);
static bool reverseLayout();
static TQPalette tqpalette( const TQWidget*w = 0 );
static TQWidgetList *tqtopLevelWidgets();
static TQEventLoop *eventLoop();
static TQStyle &tqstyle();
static void setStyle( TQStyle* );
static TQStyle* setStyle( const TQString& );
static TQDesktopWidget *desktop();
static const QColor &winStyleHighlightColor();
static void tqsetPalette(const QPalette &pal, bool informWidgets=FALSE, const char* className = 0);
static void tqsetFont(const QFont &font, bool informWidgets=FALSE, const char* className = 0);
static void setWinStyleHighlightColor( const QColor c );
#ifndef TQT_NO_CLIPBOARD
// static inline TQClipboard *tqclipboard() { return TQT_TQCLIPBOARD(clipboard()); }
static TQClipboard *tqclipboard();
#endif
static TQStringList libraryPaths();
static void tqsetLibraryPaths( const QStringList &qsl );
// inline static void tqsetLibraryPaths( const TQStringList &tqsl ) { setLibraryPaths(static_cast<const QStringList*>(&tqsl)); }
static TQWidgetList *tqallWidgets();
virtual void polish( QWidget * );
TQMetaObject *tqmetaObject() const;
static bool hasGlobalMouseTracking();
static void setGlobalMouseTracking( bool enable );
Q_SIGNALS:
void guiThreadAwake(); // Does not exist in Qt4; therefore will never be triggered
public:
TQWidget *mainWidget();
void setMainWidget(QWidget *);
// [FIXME]
#if defined(TQ_WS_X11)
static void create_xim();
static void close_xim();
static bool x11_apply_settings();
#endif
#ifndef TQT_NO_TRANSLATION
#ifndef TQT_NO_TEXTCODEC
void setDefaultCodec( TQTextCodec * );
TQTextCodec* defaultCodec() const;
#endif
// void installTranslator( TQTranslator * );
// void removeTranslator( TQTranslator * );
#endif
void wakeUpGuiThread();
#ifdef TQT_THREAD_SUPPORT
void lock();
void unlock(bool wakeUpGui = TRUE);
bool locked();
bool tryLock();
#endif
public slots:
void aboutTQt();
private:
static TQEventLoop* eventloop; // Will this work as-is or do I need code behind it?
static int app_cspec;
static TQStyle *app_style;
#ifndef TQT_NO_PALETTE
static TQPalette *app_pal;
#endif
static TQPtrList<QEventLoop> tqt_event_loop_stack;
static TQWidgetList tqt_all_widgets_list;
static QWidget* current_app_main_widget;
mutable TQString static_object_name;
friend class TQWidget;
friend class TQETWidget;
friend class TQDialog;
friend class TQAccelManager;
friend class TQEvent;
friend class TQTranslator;
friend class TQEventLoop;
friend TQ_EXPORT void qt_ucm_initialize( TQApplication * );
#if defined(TQ_WS_WIN)
friend bool qt_sendSpontaneousEvent( TQObject*, TQEvent* );
#endif
#if defined(TQ_WS_TQWS)
friend class TQInputContext;
#endif
friend void qt_init(int *, char **, TQApplication::Type);
#ifdef TQT_THREAD_SUPPORT
static TQMutex *qt_mutex;
#endif // TQT_THREAD_SUPPORT
public:
static int composedUnicode; // Value, meta-composed character
static bool metaComposeUnicode;
protected:
inline bool event(QEvent *e) { TQT_TQOBJECT_CHILDEVENT_REQUIRED_HANDLER(e) return QApplication::event(e); }
};
#else // USE_QT4
class TQApplication;
extern TQ_EXPORT TQApplication *tqApp; // global application object
class TQ_EXPORT TQApplication : public TQObject
{
Q_OBJECT
TQ_OBJECT
public:
TQApplication( int &argc, char **argv );
TQApplication( int &argc, char **argv, bool GUIenabled );
enum Type { Tty, GuiClient, GuiServer };
TQApplication( int &argc, char **argv, Type );
#if defined(TQ_WS_X11)
TQApplication( Display* dpy, HANDLE visual = 0, HANDLE cmap = 0 );
TQApplication( Display *dpy, int argc, char **argv,
HANDLE visual = 0, HANDLE cmap= 0 );
#endif
virtual ~TQApplication();
int argc() const;
char **argv() const;
Type type() const;
#ifndef TQT_NO_STYLE
static TQStyle &tqstyle();
static void setStyle( TQStyle* );
static TQStyle* setStyle( const TQString& );
#endif
#ifndef TQ_TQDOC
enum ColorMode { NormalColors, CustomColors };
static ColorMode colorMode();
static void setColorMode( TQApplication::ColorMode );
#endif
enum ColorSpec { NormalColor=0, CustomColor=1, ManyColor=2 };
static int colorSpec();
static void setColorSpec( int );
#ifndef TQT_NO_CURSOR
static TQCursor *overrideCursor();
static void setOverrideCursor( const TQCursor &, bool tqreplace=FALSE );
static void restoreOverrideCursor();
#endif
static bool hasGlobalMouseTracking();
static void setGlobalMouseTracking( bool enable );
#ifndef TQT_NO_PALETTE
static TQPalette palette( const TQWidget* = 0 );
static void setPalette( const TQPalette &, bool informWidgets=FALSE,
const char* className = 0 );
#endif
static TQFont font( const TQWidget* = 0 );
static void setFont( const TQFont &, bool informWidgets=FALSE,
const char* className = 0 );
static TQFontMetrics fontMetrics();
TQWidget *mainWidget() const;
virtual void setMainWidget( TQWidget * );
virtual void polish( TQWidget * );
static TQWidgetList *allWidgets();
static TQWidgetList *tqtopLevelWidgets();
static TQDesktopWidget *desktop();
static TQWidget *activePopupWidget();
static TQWidget *activeModalWidget();
#ifndef TQT_NO_CLIPBOARD
static TQClipboard *clipboard();
#endif
TQWidget *tqfocusWidget() const;
TQWidget *activeWindow() const;
static TQWidget *widgetAt( int x, int y, bool child=FALSE );
static TQWidget *widgetAt( const TQPoint &, bool child=FALSE );
static TQEventLoop *eventLoop();
int exec();
void processEvents();
void processEvents( int maxtime );
void processOneEvent();
bool hasPendingEvents();
int enter_loop();
void exit_loop();
int loopLevel() const;
static void exit( int retcode=0 );
static bool sendEvent( TQObject *receiver, TQEvent *event );
static void postEvent( TQObject *receiver, TQEvent *event );
static void sendPostedEvents( TQObject *receiver, int event_type );
static void sendPostedEvents();
static void removePostedEvents( TQObject *receiver );
virtual bool notify( TQObject *, TQEvent * );
static bool startingUp();
static bool closingDown();
static void flushX();
static void flush();
static void syncX();
static void beep();
#ifndef TQT_NO_TRANSLATION
# ifndef TQT_NO_TEXTCODEC
void setDefaultCodec( TQTextCodec * );
TQTextCodec* defaultCodec() const;
# endif
void installTranslator( TQTranslator * );
void removeTranslator( TQTranslator * );
#endif
enum Encoding { DefaultCodec, UnicodeUTF8 };
TQString translate( const char * context,
const char * key,
const char * comment = 0,
Encoding encoding = DefaultCodec ) const;
#ifndef TQT_NO_DIR
TQString applicationDirPath();
TQString applicationFilePath();
#endif
#ifndef TQT_NO_PALETTE
// obsolete functions
static void setWinStyleHighlightColor( const TQColor &c ) {
TQPalette p( palette() );
p.setColor( TQColorGroup::Highlight, c );
setPalette( p, TRUE);
}
static const TQColor &winStyleHighlightColor() {
return palette().active().highlight();
}
#endif
static void setDesktopSettingsAware( bool );
static bool desktopSettingsAware();
static void setCursorFlashTime( int );
static int cursorFlashTime();
static void setDoubleClickInterval( int );
static int doubleClickInterval();
#ifndef TQT_NO_WHEELEVENT
static void setWheelScrollLines( int );
static int wheelScrollLines();
#endif
static void setGlobalStrut( const TQSize & );
static TQSize globalStrut();
#ifndef TQT_NO_COMPONENT
static void tqsetLibraryPaths( const TQStringList & );
static TQStringList libraryPaths();
static void addLibraryPath( const TQString & );
static void removeLibraryPath( const TQString & );
#endif // TQT_NO_COMPONENT
static void setStartDragTime( int ms );
static int startDragTime();
static void setStartDragDistance( int l );
static int startDragDistance();
static void setReverseLayout( bool b );
static bool reverseLayout();
static int horizontalAlignment( int align );
static bool isEffectEnabled( TQt::UIEffect );
static void setEffectEnabled( TQt::UIEffect, bool enable = TRUE );
#if defined(TQ_WS_MAC)
virtual bool macEventFilter( EventHandlerCallRef, EventRef );
#endif
#if defined(TQ_WS_WIN)
virtual bool winEventFilter( MSG * );
#endif
#if defined(TQ_WS_X11)
virtual bool x11EventFilter( XEvent * );
virtual int x11ClientMessage( TQWidget*, XEvent*, bool passive_only);
int x11ProcessEvent( XEvent* );
#endif
#if defined(TQ_WS_TQWS)
virtual bool qwsEventFilter( TQWSEvent * );
int qwsProcessEvent( TQWSEvent* );
void qwsSetCustomColors( TQRgb *colortable, int start, int numColors );
/*!
\internal
Returns true if the process is GUI server
*/
bool qwsIsGUIServer();
#ifndef TQT_NO_TQWS_MANAGER
static TQWSDecoration &qwsDecoration();
static void qwsSetDecoration( TQWSDecoration *);
#endif
#endif
#if defined(TQ_OS_WIN32) || defined(TQ_OS_CYGWIN)
static WindowsVersion winVersion();
#elif defined(TQ_OS_MAC)
static MacintoshVersion macVersion();
#endif
#if defined(TQ_WS_WIN)
void winFocus( TQWidget *, bool );
static void winMouseButtonUp();
#endif
#ifndef TQT_NO_SESSIONMANAGER
// session management
bool isSessionRestored() const;
TQString sessionId() const;
TQString sessionKey() const;
virtual void commitData( TQSessionManager& sm );
virtual void saveState( TQSessionManager& sm );
#endif
#if defined(TQ_WS_X11)
#if !defined(TQT_NO_IM_EXTENSIONS)
virtual TQWidget *locateICHolderWidget( TQWidget *w );
virtual TQWidgetList *icHolderWidgets();
static void create_im();
static void close_im();
#else
TQWidget *locateICHolderWidget( TQWidget *w );
TQWidgetList *icHolderWidgets();
static void create_xim();
static void close_xim();
#endif
static TQString defaultInputMethod();
void changeAllInputContext( const TQString & );
static bool x11_apply_settings();
#endif
void wakeUpGuiThread();
#if defined(TQT_THREAD_SUPPORT)
void lock();
void unlock(bool wakeUpGui = TRUE);
bool locked();
bool tryLock();
#endif
Q_SIGNALS:
void lastWindowClosed();
void aboutToQuit();
void guiThreadAwake();
public Q_SLOTS:
void quit();
void closeAllWindows();
void aboutTQt();
#if defined(TQ_WS_TQWS)
protected:
void setArgs(int, char **);
#endif
protected:
bool event(TQEvent *);
private:
void construct( int &argc, char **argv, Type );
void initialize( int, char ** );
void init_precmdline();
void process_cmdline( int* argcptr, char ** argv );
bool internalNotify( TQObject *, TQEvent * );
#if defined(TQ_WS_TQWS)
static TQWidget *tqfindChildWidget( const TQWidget *p, const TQPoint &pos );
static TQWidget *tqfindWidget( const TQObjectList&, const TQPoint &, bool rec );
#endif
#if defined(TQ_WS_MAC)
bool do_mouse_down(Point *, bool *);
static TQMAC_PASCAL OStqStatus globalEventProcessor(EventHandlerCallRef, EventRef, void *);
static TQMAC_PASCAL OStqStatus globalAppleEventProcessor(const AppleEvent *, AppleEvent *, long);
static TQMAC_PASCAL void qt_context_timer_callbk(EventLoopTimerRef, void *);
static TQMAC_PASCAL void qt_select_timer_callbk(EventLoopTimerRef, void *);
static bool qt_mac_apply_settings();
friend class TQMacInputMethod;
friend TQMAC_PASCAL OStqStatus qt_window_event(EventHandlerCallRef, EventRef, void *);
friend void qt_mac_update_os_settings();
friend bool qt_set_socket_handler( int, int, TQObject *, bool);
friend void qt_mac_destroy_widget(TQWidget *);
friend void qt_init(int *, char **, TQApplication::Type);
#endif
#if defined(TQ_WS_X11)
private slots:
void postIMEvent( TQObject *receiver, TQIMEvent *event );
#endif
private:
#ifdef TQT_THREAD_SUPPORT
static TQMutex *qt_mutex;
#endif // TQT_THREAD_SUPPORT
int app_argc;
char **app_argv;
bool quit_now;
int quit_code;
static TQStyle *app_style;
static int app_cspec;
#ifndef TQT_NO_PALETTE
static TQPalette *app_pal;
#endif
static TQFont *app_font;
#ifndef TQT_NO_CURSOR
static TQCursor *app_cursor;
#endif
static TQEventLoop* eventloop;
static int app_tracking;
static bool is_app_running;
static bool is_app_closing;
static bool app_exit_loop;
static int loop_level;
static TQWidget *main_widget;
static TQWidget *focus_widget;
static TQWidget *active_window;
static bool obey_desktop_settings;
static int cursor_flash_time;
static int mouse_double_click_time;
static int wheel_scroll_lines;
static int composedUnicode; // Value, meta-composed character
static bool animate_ui;
static bool animate_menu;
static bool animate_tooltip;
static bool animate_combo;
static bool fade_menu;
static bool fade_tooltip;
static bool animate_toolbox;
static bool widgetCount; // Coupled with -widgetcount switch
static bool metaComposeUnicode;
TQValueList<TQTranslator*> *translators;
#ifndef TQT_NO_SESSIONMANAGER
TQSessionManager *session_manager;
TQString session_id;
static TQString* session_key;
bool is_session_restored;
#endif
#if defined(TQ_WS_X11)
#if !defined (TQT_NO_STYLE)
static void x11_initialize_style();
#endif
static TQString defaultIM; // default input method's name in this application.
#endif
static TQSize app_strut;
#ifndef TQT_NO_COMPONENT
static TQStringList *app_libpaths;
#endif
static TQAsciiDict<TQPalette> *app_palettes;
static TQAsciiDict<TQFont> *app_fonts;
static TQWidgetList *popupWidgets;
bool inPopupMode() const;
void closePopup( TQWidget *popup );
void openPopup( TQWidget *popup );
void setActiveWindow( TQWidget* act );
static bool sendSpontaneousEvent( TQObject *receiver, TQEvent *event );
static void removePostedEvent( TQEvent * );
static void removePostedEvents( TQObject *receiver, int event_type );
friend class TQWidget;
friend class TQETWidget;
friend class TQDialog;
friend class TQAccelManager;
friend class TQEvent;
friend class TQTranslator;
friend class TQEventLoop;
friend TQ_EXPORT void qt_ucm_initialize( TQApplication * );
#if defined(TQ_WS_WIN)
friend bool qt_sendSpontaneousEvent( TQObject*, TQEvent* );
#endif
#if defined(TQ_WS_TQWS)
friend class TQInputContext;
#endif
private: // Disabled copy constructor and operator=
#if defined(TQ_DISABLE_COPY)
TQApplication( const TQApplication & );
TQApplication &operator=( const TQApplication & );
#endif
};
inline int TQApplication::argc() const
{
return app_argc;
}
inline char **TQApplication::argv() const
{
return app_argv;
}
#if defined(TQ_WS_TQWS)
inline void TQApplication::setArgs(int c, char **v)
{
app_argc = c;
app_argv = v;
}
#endif
#ifndef TQT_NO_CURSOR
inline TQCursor *TQApplication::overrideCursor()
{
return app_cursor;
}
#endif
inline bool TQApplication::hasGlobalMouseTracking()
{
return app_tracking > 0;
}
inline TQWidget *TQApplication::mainWidget() const
{
return main_widget;
}
inline TQWidget *TQApplication::tqfocusWidget() const
{
return focus_widget;
}
inline TQWidget *TQApplication::activeWindow() const
{
return active_window;
}
inline TQWidget *TQApplication::widgetAt( const TQPoint &p, bool child )
{
return widgetAt( p.x(), p.y(), child );
}
inline bool TQApplication::inPopupMode() const
{
return popupWidgets != 0;
}
#ifndef TQT_NO_SESSIONMANAGER
inline bool TQApplication::isSessionRestored() const
{
return is_session_restored;
}
inline TQString TQApplication::sessionId() const
{
return session_id;
}
inline TQString TQApplication::sessionKey() const
{
return session_key ? *session_key : TQString::null;
}
#endif
inline TQSize TQApplication::globalStrut()
{
return app_strut;
}
inline bool TQApplication::sendEvent( TQObject *receiver, TQEvent *event )
{ if ( event ) event->spont = FALSE; return tqApp ? tqApp->notify( receiver, event ) : FALSE; }
inline bool TQApplication::sendSpontaneousEvent( TQObject *receiver, TQEvent *event )
{ if ( event ) event->spont = TRUE; return tqApp ? tqApp->notify( receiver, event ) : FALSE; }
#ifdef TQT_NO_TRANSLATION
// Simple versions
inline TQString TQApplication::translate( const char *, const char *sourceText,
const char *, Encoding encoding ) const
{
#ifndef TQT_NO_TEXTCODEC
if ( encoding == UnicodeUTF8 )
return TQString::fromUtf8( sourceText );
else
#endif
return TQString::tqfromLatin1( sourceText );
}
#endif
inline int TQApplication::horizontalAlignment( int align )
{
align &= AlignHorizontal_Mask;
if ( align == AlignAuto ) {
if ( reverseLayout() )
align = AlignRight;
else
align = AlignLeft;
}
return align;
}
#endif // TQAPPLICATION_H
#endif // USE_QT4
|