summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2004-05-21last bit of jornada 56x button updateschicken1-5/+5
2004-05-21correct jornada 56x button handling for opiechicken2-5/+71
2004-05-21jornada 56x device buttonschicken5-0/+0
2004-05-21add picture and .desktop file for OYatzee (seems nice, but w.i.p)mickeyl2-0/+8
2004-05-21better jornada 56x lookchicken1-0/+0
2004-05-21tiny fix, but essentialchicken1-1/+1
2004-05-21fixchicken1-1/+1
2004-05-21Rule of Thumb: If it is 3:00am and you've suddenly something that compiles ↵zecke1-0/+3
it is a step in the right direction but wrong... Now the question is where to get the brown paperbacks again?! Maybe we get a discount... Anyway: adding a break in switch/case is most likely a good idea. Before we only used return
2004-05-21some more TODOsmickeyl2-6/+16
2004-05-21No dynamic_cast if we've no rtti. Ask tronical about the correctness becausezecke1-10/+10
if we would static_cast rightaway the compilers quits with errors..
2004-05-21Fix commentzecke1-7/+7
s/plugins/template
2004-05-20remove bogus paths out of .pro filesmickeyl28-29/+28
2004-05-20add a 'default' backend for readEntry or you could/will crashzecke1-7/+7
because QString::null is not in the dictionary of available backends. I'm conversative so it is 'xml' Eilers/BradC change it on your will
2004-05-20cosmeticsmickeyl1-1/+1
2004-05-20Changing OPimAccessFactory::Default to defaultAccesseilers5-5/+5
Changing OBackendFactory::Default to defaultBackend I hope this fixes all problems with reserved words.. Sorry for any inconveniences..
2004-05-20Fixing problems with "default" which is a reserved keyword. Use "Default" ↵eilers1-1/+1
instead..
2004-05-20jornada 56x picture for opie sysinfochicken2-0/+2
2004-05-20always compile before commitllornkcor1-1/+1
2004-05-20add trllornkcor1-3/+7
2004-05-19resolve OE build conflict re. appname/directorymickeyl1-1/+1
2004-05-19add background images packagesllornkcor5-0/+45
2004-05-18My Idea of a PluginConfig Widget part II :)zecke1-10/+40
Now on to implementing it
2004-05-18Aye no (const char*)str where type(str) == QString please...zecke1-2/+2
Now I can even scan non latin access points and don't need to reset stdout/stderr
2004-05-18Fix the layout of the KeyConfig Dialog.zecke1-2/+2
The label with 'Default: %1' is now added as MultiCellWidget and now larger keys don't make the 'configure key' button go out of display dimnesion
2004-05-18catch up with cleanupmickeyl1-2/+2
2004-05-18CLEANUP: synchronize binary and .desktop namemickeyl1-0/+0
2004-05-18fixchicken1-1/+1
2004-05-18use menu icon, and cleanup control file for pics dir, so not to include the ↵llornkcor2-2/+2
CVS dir
2004-05-18proper size for menu iconllornkcor1-0/+0
2004-05-17OPluginManager first bits of saving, enabling and sorting Plugin Configzecke2-33/+395
At least it compiles, test and GUI will come this week
2004-05-17use the config group saver right?!zecke1-2/+2
2004-05-17Clearify documentation on config groupsaver and give a small code examplezecke1-0/+9
2004-05-17ich@opiezilla:~/programming/opie/head/opie$ nm lib/libopiecore2.so | grep polishzecke4-2/+18
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-05-16make this compile with gcc 3.4mickeyl1-3/+2
we want to stay gcc 3.4 compliant, so folks please update your compilers
2004-05-16CLEANUP: synchronize appname with .desktop filemickeyl2-2/+3
2004-05-16synchronize binary and .desktop file namemickeyl1-1/+1
2004-05-16Improved accessing of default database style by using OPimGlobal::DEFAULTeilers2-10/+38
2004-05-16Backendfactory allows to request the default database style which is definedeilers2-17/+46
by Settings/pimaccess.conf. This will be used by the OPimAccessFactory .. see next commit..
2004-05-16Opie PIM-Converter now uses the new OPimAccessFactory template..eilers1-45/+24
2004-05-16Introducing a new factory for creating access objects for the pim backends.eilers3-41/+224
It is still very basic but simplifies the access of the pim database and covers the creation process itself.. The new class OPimGlobal will contain constants and enums which should be public available for users of the PIM-classes..
2004-05-16Fixing name of project and add missing pim directory "backends"eilers1-3/+4
2004-05-15- convert qDebug to odebugar3-42/+43
2004-05-15CLEANUP: synchronize binary and .desktop file namesmickeyl2-1/+1
2004-05-14fixchicken1-1/+1
2004-05-14fixeschicken10-10/+10
2004-05-14fixchicken1-1/+1
2004-05-14CLEANUP: synchronize binary and .desktop file namemickeyl1-0/+0
2004-05-14CLEANUP: Don't include header files via relative pathsmickeyl4-6/+8
Note: Remember to rm stamp-headers
2004-05-14CLEANUP: synchronize binary and desktop namemickeyl1-0/+0
2004-05-13BUGFIX for 1314: Fix page initialization on first start of drawpad.mickeyl5-6/+11
Problem was caused by a race condition. Developers: If you have todo initializations which depend on the widget layout being finished, _don't_ do this in the widget constructor but in a callback from the mainloop, i.e. via QTimer::singleShot( 10, this, SLOT( myInitialization() ) );