summaryrefslogtreecommitdiff
path: root/library/qpeapplication.h
AgeCommit message (Collapse)AuthorFilesLines
2007-01-19Commit of Paul's patch to remove a macro and substitute it with aerik1-0/+2
class variable.
2005-10-04libqpe:zecke1-1/+1
My QPEApplication does not have a public copy constructor. so we simply avoid using it by creation the application directly.
2005-06-26get the default gfx driver from QWS_DISPLAY instead of hardcodingmickeyl1-1/+4
it to 'Transformed' when launching rotated apps. Patch courtesy Manuel Teira
2005-02-08-Kill the need to compile Opie against a patched version of Qt/Ezecke1-5/+0
Remove the setStyle and setFont overrides as a result remove settings from the buildsystem and the Apperance GUI We do this as we won't run NeoCal or TKC Apps on a GCC3 (now default compiler) libqpe, to run these applications one can use oz-compat
2005-01-02Add the Qtopia 1.7 SDK macros for quick-apps to easa compilation of 3rd ↵mickeyl1-0/+13
party apps against our headers
2004-12-20Restore Files:zecke1-46/+12
-QWSDecoration scaling fixes by mickeyl -Readd macros for DEPRECATED and VISIBILITY -Move out showWidget and execDialog to widget_sowing.cpp -QPE_EXPORT_SYMBOL for Q_EXPORT_INTERFACE -Deprecated for FileSelector, QPEMenubar and Toolbar
2004-10-15Remove installTranslator also from the headerzecke1-3/+0
2004-08-25Final changes for RoH Feedbackwimpie1-2/+0
- changed *.pro file to compile in backend - some more fixes to rohfeedback and qpeapplication
2004-05-17ich@opiezilla:~/programming/opie/head/opie$ nm lib/libopiecore2.so | grep polishzecke1-1/+3
U _ZN14QPEApplication6polishEP7QWidget ich@opiezilla:~/programming/opie/head/opie$ nm lib/libopiecore2.so | grep polish U _ZN12QApplication6polishEP7QWidget in qt_override we had to overwrite the Palette for some widgets for some styles (setting no background liquid and such) we overwrote the polish method. As we did not inherit from QPEApplication the 'polish' symbol was only internal to libqpe and this way Opie apps worked on Opies and Sharps libqpe, and Sharp apps work on our libqpe. Now with libopiecore the compiler tries to include different symbols as shown above. So for now we could disable the legacy palette polishing which shouldn't hurt anyway. OApplication is the source of all evil, we wouldn't 'pull' in the polish symbol... but having a 'shadow' weak symbol as backup isn't good as well. Chicken you may enable the option in config.in...
2004-04-21BigScreen: don't resize widgets that always visible (for example on bring a ↵ar1-19/+24
widget to front)
2004-04-01delimited screen-size to desktop-size, if this is smaller than the widget's onear1-20/+24
only the taskbar size is approximated
2004-02-21Default to showMaximized on 240x320 and 320x240 displayszecke1-4/+2
2004-02-08Fix return type to voidzecke1-2/+2
2004-02-08improve support for BigScreenar1-0/+17
2004-02-06add api docuzecke1-1/+39
2003-09-30Use the improved version to iterate over windows from Qtopiazecke1-3/+0
and include the top level widgets in the to be iterated widgets
2003-09-01Fix to compile..eilers1-1/+1
2003-08-29Patch provided by mithrozecke1-0/+2
I've included 2 patches need to make opie support on the fly screen resolution changing. This is done with the following, qcop "QPE/System" "setCurrentMode(int,int,int)" 480 640 16 This is good for running applications in compatibility mode on the C700. As you can see there isn't much to these patches.
2003-08-29-IF the app is visible and has more than once topLevel widgetzecke1-4/+7
iterate over the list and activate the next one. -Install translation in .qm -Add an else again ( was lost in a merge )
2003-08-25-instead of defining for an board we define now what thiszecke1-0/+6
boards need QPE_NEED_CALIBRATE -launcher is the only one executin application -allow processing of QCOPfiles after start ( qpeapplication ) -qcopenvelope no longer calls Global::execute
2003-05-16enable opie to compile against a non-patched qt 2.3.2mickeyl1-3/+8
to prepare the possibility of building an opie 1.0 feed for the sharp rom
2003-05-12Hospital Hacking Sessionzecke1-0/+3
Install libopie.qm make apps fully translatable... refactor installing trans into a method instead of having the same code copy and pasted three times
2003-03-27 Behavior change for setCurrentRotation. Now changes rotation for newlykergoth1-19/+21
started apps as well as those currently running. Differs from setDefaultRotation in that 1) it rotates currently running apps, and 2) does not set deforient or save orientation to qpe.conf.
2003-03-26- qcopenvelope inclusion not needed anymoresimon1-4/+0
2003-03-26- Kommando zurueck :)simon1-5/+0
2003-03-25- in setCurrentRotation do the qcop call if we're called from withinsimon1-0/+9
a client (consistent to setDefaultRotation's behaviour)
2003-02-24Hmm, Oliver was that intentional?harlekin1-1/+1
changed the opiemail config.in files to the correct dependencies. How did this slip in again ? - qApp->desktop()->qwsDisplay()->setTransformation( e ); + //qApp->desktop()->qwsDisplay()->setTransformation( e );
2003-02-13Added Euroconv for Eric Santonaccigroucho1-1/+1
Changed the opiemail config.in files to the correct dependencies. How did this slip in again ?
2003-01-26None->Rot0 name for transformation enum, as it stomped on someone elses None ;)kergoth1-2/+2
2003-01-26Add setCurrentRotation QCop call for later use of on the fly rotation. Also ↵kergoth1-17/+46
adapt depends to the actual required qt version.
2002-12-22Totally reworked the key grabbing, which always had problems:sandman1-1/+0
- applications get *all* key events now, as long as they have the focus - an application decides if it has the keyboard grabbed or not - if it's grabbed, the app consumes the key press - if it's not grabbed and a F1-F29 key is pressed, the app sends a QCop call to the launcher (deviceButtonPressed(...)) - when the launcher receives a QCop deviceButtonPressed it simply sends the configured QCopEnvelope - all "special" actions (like menu, home) are now accessible via QCop calls (see buttonsettings)
2002-12-17small additions to support grabbing the buttons back from a crashedsandman1-0/+2
application
2002-12-07 - removed the libpreload stuff from global.cppsandman1-0/+2
- added qt_override.* which provides the same functionality as libpreload (the new -override patch for Qt/E is needed for this to work/compile) - changed qpeapplication a bit to accomodate the new interface
2002-09-10Qtopia1-6 mergezecke1-7/+33
still to test bic changes to be resolved more changes to be made?
2002-02-10Added support for setMic and micChange QCop messages. These additionsjeremy1-0/+6
are exactly like setVolume and volumeChange excopt of course, they change the mic input level instead of the volume out level.
2002-01-25Initial revisionkergoth1-0/+124