Brief description of class still missing. More...
#include <Application.h>
Public Member Functions | |
Application (int &argc, char **argv, ApplicationHelp *(*help)(), bool reportBugs=true) | |
virtual bool | hasGui () const |
void | setConsoleMessage () |
void | setGuiMessage () |
~Application () | |
Static Public Member Functions | |
static Application * | instance () |
Protected Member Functions | |
virtual void | setHelp (ApplicationHelp *h) |
Brief description of class still missing.
Full description of class still missing
QGpGuiTools::Application::Application | ( | int & | argc, |
char ** | argv, | ||
ApplicationHelp *(*)() | help, | ||
bool | reportBugs = true |
||
) |
Description of constructor still missing
References QGpCoreTools::CoreApplicationPrivate::addArgumentList(), QGpCoreTools::CoreApplicationPrivate::checkAtomicOperations(), help(), QGpCoreTools::CoreApplicationPrivate::initInternalDebugger(), QGpCoreTools::CoreApplicationPrivate::initTranslations(), QGpCoreTools::CoreApplicationPrivate::printArgumentLists(), QGpCoreTools::CoreApplicationPrivate::setMessageHandler(), and QGpCoreTools::CoreApplicationPrivate::showHelp().
: CoreApplicationPrivate(argc, argv), QApplication(argc, argv, hasGui()) { // Qt application information setApplicationName(CoreApplicationPrivate::constructorApplicationName()); setOrganizationDomain("geopsy.org"); setOrganizationName("geopsy"); // Install message handler setMessageHandler(new GuiMessage); setQuitOnLastWindowClosed(true); // load translation if necessary initTranslations(); // Check arguments int i, j=1; for(i=1; i<argc; i++) { QByteArray arg=argv[i]; if(arg=="-reportbug") { reportBug(); ::exit(0); } else if(arg=="-reportint") { reportInterrupt(); ::exit(0); } else if(help && (arg=="--help" || arg=="-help" || arg=="-h")) { showHelp(i, argc, argv, help); ::exit(0); } else if(arg=="-args") { printArgumentLists(); ::exit(0); } else if(arg=="--nobugreport" || arg=="-nobugreport") { reportBugs=false; } else { argv[j++]=argv[i]; } } if(j < argc) { argv[j]=0; argc=j; } initInternalDebugger(reportBugs); checkAtomicOperations(); // Use current system locale (interesting for decimal point conversions) QLocale::setDefault(QLocale::system()); // Store arguments for history listing, here to avoid generic options (-h,...) addArgumentList(argc, argv); }
Description of destructor still missing
References QGpCoreTools::CoreApplicationPrivate::destructorCleanUp(), and hasGui().
{ if(hasGui()) { clipboard()->clear(); } destructorCleanUp(); }
bool QGpGuiTools::Application::hasGui | ( | ) | const [virtual] |
Implements QGpCoreTools::CoreApplicationPrivate.
Referenced by ~Application().
{ #ifdef Q_WS_X11 const char * display=getenv("DISPLAY"); return display && strlen(display) > 0; #else return true; #endif }
static Application* QGpGuiTools::Application::instance | ( | ) | [inline, static] |
Reimplemented from QGpCoreTools::CoreApplicationPrivate.
Referenced by QGpGuiTools::LogWidget::addView(), QGpGuiTools::LogWidget::removeView(), QGpGuiTools::LoopProgressWidget::setLoop(), QGpGuiTools::LogWidget::setViewName(), and QGpGuiTools::LogWidget::text().
{return static_cast<Application *>(CoreApplicationPrivate::instance());}
In gui applications with commad line option, it allows to remove any gui message box
References QGpCoreTools::CoreApplicationPrivate::setMessageHandler().
Referenced by main(), and modeGui().
{ setMessageHandler(new Message); }
In gui applications with commad line option, it allows to restore a gui message box
References QGpCoreTools::CoreApplicationPrivate::setMessageHandler().
Referenced by main().
{ setMessageHandler(new GuiMessage); }
void QGpGuiTools::Application::setHelp | ( | ApplicationHelp * | h | ) | [protected, virtual] |
Reimplemented from QGpCoreTools::CoreApplicationPrivate.
References QGpCoreTools::ApplicationHelp::addGroup(), QGpCoreTools::ApplicationHelp::addOption(), and QGpCoreTools::tr().
{ h->addGroup(tr("Qt"),"qt"); h->addOption(tr("-nograb"), tr("Tells Qt that it must never grab the mouse or the keyboard")); #ifdef Q_WS_X11 h->addOption(tr("-dograb"), tr("Running under a debugger can cause an implicit -nograb, use -dograb to override")); h->addOption(tr("-sync"), tr("Switches to synchronous mode for debugging")); #endif h->addOption(tr("-style <style>"), tr("Sets the application GUI style. Possible values are\n" " motif\n" " windows\n" " platinum\n" "If you compiled Qt with additional styles or have additional styles as plugins " "these will be available to the -style command line option")); h->addOption(tr("-session <session>"), tr("Restore the application from an earlier session")); h->addOption(tr("-reverse"), tr("Sets the application's layout direction to right to left")); #ifdef Q_WS_X11 h->addOption(tr("-display <display>"), tr("Sets the X display (default is $DISPLAY)")); h->addOption(tr("-geometry <geometry>"), tr("Sets the client geometry of the first window that is shown")); h->addOption(tr("-fn, -font <font>"), tr("Defines the application font. The font should be specified using an X logical " "font description")); h->addOption(tr("-bg, -background <color>"), tr("Sets the default background color and an application palette (light and dark " "shades are calculated)")); h->addOption(tr("-fg, -foreground <color>"), tr("Sets the default foreground color")); h->addOption(tr("-btn, -button <color>"), tr("Sets the default button color")); h->addOption(tr("-name <name>"), tr("Sets the application name")); h->addOption(tr("-title <title>"), tr("Sets the application title")); h->addOption(tr("-visual TrueColor"), tr("Forces the application to use a TrueColor visual on an 8-bit display")); h->addOption(tr("-ncols <count>"), tr("Limits the number of colors allocated in the color cube on an 8-bit display, if the " "application is using the QApplication::ManyColor color specification. If count is 216 then a " "6x6x6 color cube is used (i.e. 6 levels of red, 6 of green, and 6 of blue); for other values, " "a cube approximately proportional to a 2x3x1 cube is used")); h->addOption(tr("-cmap <count>"), tr("Causes the application to install a private color map on an 8-bit display")); h->addOption(tr("-im <XIM server>"), tr("Sets the input method server (equivalent to setting the XMODIFIERS environment variable)")); h->addOption(tr("-noxim"), tr("Disables the input method framework (\"no X input method\")")); h->addOption(tr("-inputstyle <inputstyle>"), tr("Defines how the input is inserted into the given widget. Possible values are:\n" " onTheSpot makes the input appear directly in the widget\n" " offTheSpot\n" " overTheSpot makes the input appear in a box floating over the widget")); #endif CoreApplicationPrivate::setHelp(h); }