author | mickeyl <mickeyl> | 2004-03-01 17:36:09 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2004-03-01 17:36:09 (UTC) |
commit | 5f6f3f7d9356e24ac5284b7ccc10a75451ea94ee (patch) (side-by-side diff) | |
tree | 3a1149a6afa188b9c51b86357edd0981d9c97f4c | |
parent | 796de538b7b7bc7c3e2af3e8dd081000c21569ac (diff) | |
download | opie-5f6f3f7d9356e24ac5284b7ccc10a75451ea94ee.zip opie-5f6f3f7d9356e24ac5284b7ccc10a75451ea94ee.tar.gz opie-5f6f3f7d9356e24ac5284b7ccc10a75451ea94ee.tar.bz2 |
some header files and glue to compile japanese apps
pretty much work in progress - maybe someone wants to finish
-rw-r--r-- | Rules.make | 5 | ||||
-rw-r--r-- | libslcompat/.cvsignore | 6 | ||||
-rw-r--r-- | libslcompat/README | 4 | ||||
-rw-r--r-- | libslcompat/config.in | 4 | ||||
-rw-r--r-- | libslcompat/libslcompat.pro | 16 | ||||
-rw-r--r-- | libslcompat/slcolorselector.cpp | 64 | ||||
-rw-r--r-- | libslcompat/slcolorselector.h | 112 | ||||
-rw-r--r-- | libslcompat/slfiledialog.h | 70 | ||||
-rw-r--r-- | libslcompat/slfileselector.cpp | 86 | ||||
-rw-r--r-- | libslcompat/slfileselector.h | 414 | ||||
-rw-r--r-- | libslcompat/slmisc.h | 135 | ||||
-rw-r--r-- | packages | 1 |
12 files changed, 916 insertions, 1 deletions
@@ -3,214 +3,217 @@ force: $(configs) : $(call makecfg,$@) $(TOPDIR)/gen.pro : $(TOPDIR)/.config echo > $@ ifneq ($(CONFIG_DEBUG),) echo CONFIG += debug >> $@ echo CONFIG -= release >> $@ else echo CONFIG -= debug >> $@ echo CONFIG += release >> $@ endif ifeq ($(filter 3.%,$(QTE_VERSION)),) # not qt3 echo CONFIG -= qt3 >> $@ else echo CONFIG += qt3 >> $@ endif ifneq ($(CONFIG_QUICK_LAUNCH),) echo contains\( CONFIG, quick-app \) \{ >> $@ echo CONFIG -= quick-app >> $@ echo CONFIG += quick-app-lib >> $@ echo QUICKLAUNCH_PATH = $(CONFIG_QUICKLAUNCH_PATH) >> $@ echo \} >> $@ else echo contains\( CONFIG, quick-app \) \{ >> $@ echo CONFIG -= quick-app >> $@ echo CONFIG += quick-app-bin >> $@ echo \} >> $@ endif ifeq ($(CONFIG_OPIE_NO_OVERRIDE_QT),y) echo CONFIG += no-override >> $@ endif ifeq ($(CONFIG_OPIE_NO_BUILTIN_SHUTDOWN),y) echo DEFINES += OPIE_NO_BUILTIN_SHUTDOWN >> $@ endif ifeq ($(CONFIG_OPIE_NO_BUILTIN_CALIBRATE),y) echo DEFINES += OPIE_NO_BUILTIN_CALIBRATE >> $@ endif ifeq ($(CONFIG_USE_REALTIME_AUDIO_THREAD),y) echo DEFINES += USE_REALTIME_AUDIO_THREAD >> $@ endif ifeq ($(CONFIG_QT_QWS_ALLOW_CLOCK),y) echo DEFINES += QT_QWS_ALLOW_OVERCLOCK >> $@ endif ifeq ($(CONFIG_OPIE_HIGH_RES_SMALL_PHY),y) echo DEFINES += OPIE_HIGH_RES_SMALL_PHY >> $@ endif ifeq ($(CONFIG_OPIE_NEW_ALLOC),y) echo DEFINES += OPIE_NEW_MALLOC >> $@ endif ifeq ($(CONFIG_OPIE_NO_SOUND_PCM_READ_BITS),y) echo DEFINES += OPIE_NO_SOUND_PCM_READ_BITS >> $@ endif echo DEFINES += OPIE_SOUND_FRAGMENT_SHIFT=$(CONFIG_OPIE_SOUND_FRAGMENT_SHIFT) >> $@ echo DEFINES += OPIE_WE_VERSION=$(CONFIG_OPIE_WE_VERSION) >> $@ $(TOPDIR)/.depends : $(shell if [ -e $(TOPDIR)/config.in ]\; then echo $(TOPDIR)/config.in\; fi\;) $(TOPDIR)/.config $(TOPDIR)/packages @echo Generating dependency information... # add to subdir-y, and add descend rules @cat $(TOPDIR)/packages | grep -v '^#' | \ awk '{print \ ".PHONY : " $$2 "\n" \ "subdir-$$(" $$1 ") += " $$2 "\n\n"; \ print $$2 " : " $$2 "/Makefile\n\t$$(call descend,$$@,$(filter-out $$@,$$(filter-out $$@,$$(MAKECMDGOALS))))\n"; }' > $(TOPDIR)/.depends cat $(TOPDIR)/packages | grep -v '^#' | \ perl -ne '($$cfg, $$dir, $$pro) = $$_ =~ /^(\S+)\s+(\S+)\s+(\S+)/; if ( -e "$$dir/$$pro" ) { print "$$dir/Makefile : $$dir/$$pro \$$(QMAKE) \$$(OPIEDIR)/gen.pro \$$(OPIEDIR)/.config\n\t\$$(call makefilegen,\$$@)\n\n"; }' \ >> $(TOPDIR)/.depends # interpackage dependency generation @cat $(TOPDIR)/packages | \ $(TOPDIR)/scripts/deps.pl >> $(TOPDIR)/.depends $(TOPDIR)/.depends.cfgs: # config.in interdependencies @echo $(configs) | sed -e 's,/config.in,,g' | ( for i in `cat`; do echo $$i; done ) > dirs @cat dirs | ( for i in `cat`; do if [ "`cat dirs|grep $$i 2>/dev/null|wc -l`" -ne "1" ]; then deps=`cat dirs|grep $$i| grep -v "^$$i$$"|for i in \`cat|sed -e's,^$(TOPDIR)/,$$(TOPDIR)/,g'\`; do echo $$i/config.in; done`; echo `echo $$i/config.in|sed -e 's,^$(TOPDIR)/,$$(TOPDIR)/,'` : $$deps; fi; done ) >> $@ @-rm -f dirs $(QTDIR)/stamp-headers : @-rm -f $(QTDIR)/stamp-headers* ( cd $(QTDIR)/include; \ $(patsubst %,ln -sf ../src/kernel/%;,qgfx_qws.h qwsmouse_qws.h \ qcopchannel_qws.h qwindowsystem_qws.h \ qfontmanager_qws.h qwsdefaultdecoration_qws.h)) touch $@ $(QTDIR)/stamp-headers-x11 : @-rm -f $(QTDIR)/stamp-headers* cd $(QTDIR)/include; $(patsubst %,ln -sf $(OPIEDIR)/x11/libqpe-x11/qt/%;,qgfx_qws.h qwsmouse_qws.h qcopchannel_qws.h qwindowsystem_qws.h qfontmanager_qws.h qwsdefaultdecoration_qws.h) touch $@ $(OPIEDIR)/stamp-headers : @-rm -f $(OPIEDIR)/stamp-headers* mkdir -p $(TOPDIR)/include/qpe \ $(TOPDIR)/include/qtopia \ $(TOPDIR)/include/opie \ $(TOPDIR)/include/opie2 \ - $(TOPDIR)/include/qtopia/private + $(TOPDIR)/include/qtopia/private \ + $(TOPDIR)/include/sl ( cd include/qpe && rm -f *.h; ln -sf ../../library/*.h .; ln -sf ../../library/backend/*.h .; rm -f *_p.h; ) ( cd include/qtopia && rm -f *.h; ln -sf ../../library/*.h .; ) ( cd include/qtopia/private && rm -f *.h; ln -sf ../../../library/backend/*.h .; ) # libopie1 ( cd include/opie && rm -f *.h; ln -sf ../../libopie/*.h .; rm -f *_p.h; ) ( cd include/opie && ln -sf ../../libopie/pim/*.h .; ) ( cd include/opie && ln -sf ../../libopie/big-screen/*.h .; ) # libopie2 ( cd include/opie2 && ln -sf ../../libopie2/opiecore/*.h .; ) ( cd include/opie2 && ln -sf ../../libopie2/opiecore/device/*.h .; ) ( cd include/opie2 && ln -sf ../../libopie2/opiemm/*.h .; ) ( cd include/opie2 && ln -sf ../../libopie2/opiedb/*.h .; ) ( cd include/opie2 && ln -sf ../../libopie2/opienet/*.h .; ) ( cd include/opie2 && ln -sf ../../libopie2/opiepim/*.h .; ) ( cd include/opie2 && ln -sf ../../libopie2/opiepim/core/*.h .; ) ( cd include/opie2 && ln -sf ../../libopie2/opiepim/core/backends/*.h .; ) ( cd include/opie2 && ln -sf ../../libopie2/opiepim/ui/*.h .; ) ( cd include/opie2 && ln -sf ../../libopie2/opieui/*.h .; ) ( cd include/opie2 && ln -sf ../../libopie2/opieui/fileselector/*.h .; ) ( cd include/opie2 && ln -sf ../../libopie2/opieui/big-screen/*.h .; ) + # auxilliary libraries ( cd include/opie2 && ln -sf ../../libqtaux/*.h .; ) + ( cd include/sl && ln -sf ../../libslcompat/*.h .; ) # all ( cd include/opie; for generatedHeader in `cd ../../libopie; ls *.ui | sed -e "s,\.ui,\.h,g"`; do \ ln -sf ../../libopie/$$generatedHeader $$generatedHeader; done ) ln -sf ../../library/custom.h $(TOPDIR)/include/qpe/custom.h touch $@ $(OPIEDIR)/stamp-headers-x11 : @-rm -f $(OPIEDIR)/stamp-headers* mkdir -p $(TOPDIR)/include/qpe $(TOPDIR)/include/qtopia \ $(TOPDIR)/include/opie $(TOPDIR)/include/qtopia/private ( cd include/qpe && rm -f *.h; ln -sf ../../library/*.h .; ln -sf ../../library/backend/*.h .; rm -f *_p.h; ) ( cd include/qtopia && rm -f *.h; ln -sf ../../library/*.h .; ) ( cd include/qtopia/private && rm -f *.h; ln -sf ../../../library/backend/*.h .; ) ( cd include/opie && rm -f *.h; ln -sf ../../libopie/*.h .; rm -f *_p.h; ) ( cd include/opie && ln -sf ../../libsql/*.h .; ) ( cd include/opie && ln -sf ../../libopie/pim/*.h .; ) ( cd include/opie; for generatedHeader in `cd ../../libopie; ls *.ui | sed -e "s,\.ui,\.h,g"`; do \ ln -sf ../../libopie/$$generatedHeader $$generatedHeader; done ) ln -sf ../../library/custom.h $(TOPDIR)/include/qpe/custom.h ( cd include/qpe; ln -sf ../../x11/libqpe-x11/qpe/*.h .; ) touch $@ $(TOPDIR)/library/custom.h : $(TOPDIR)/.config @-rm -f $@ @$(if $(patsubst "%",%,$(CONFIG_CUSTOMFILE)),\ ln -sf $(patsubst "%",%,$(CONFIG_CUSTOMFILE)) $@) @touch $@ $(TOPDIR)/scripts/lxdialog/lxdialog $(TOPDIR)/scripts/kconfig/mconf $(TOPDIR)/scripts/kconfig/conf $(TOPDIR)/scripts/kconfig/qconf $(TOPDIR)/scripts/kconfig/libkconfig.so $(TOPDIR)/scripts/kconfig/gconf $(TOPDIR)/qmake/qmake: @$(call descend,$(shell dirname $@),$(shell basename $@)) menuconfig: $(TOPDIR)/scripts/lxdialog/lxdialog $(TOPDIR)/scripts/kconfig/mconf ./config.in $(TOPDIR)/scripts/kconfig/mconf ./config.in @touch ./.config.stamp xconfig: $(TOPDIR)/scripts/kconfig/qconf $(TOPDIR)/scripts/kconfig/libkconfig.so ./config.in $(TOPDIR)/scripts/kconfig/qconf ./config.in @touch .config.stamp gconfig: $(TOPDIR)/scripts/kconfig/gconf $(TOPDIR)/scripts/kconfig/libkconfig.so ./config.in $(TOPDIR)/scripts/kconfig/gconf ./config.in @touch .config.stamp config: $(TOPDIR)/scripts/kconfig/conf ./config.in $(TOPDIR)/scripts/kconfig/conf ./config.in @touch .config.stamp oldconfig: $(TOPDIR)/scripts/kconfig/conf ./config.in $(TOPDIR)/scripts/kconfig/conf -o ./config.in @touch .config.stamp randconfig: $(TOPDIR)/scripts/kconfig/conf ./config.in $(TOPDIR)/scripts/kconfig/conf -r ./config.in @touch .config.stamp allyesconfig: $(TOPDIR)/scripts/kconfig/conf ./config.in $(TOPDIR)/scripts/kconfig/conf -y ./config.in @touch .config.stamp allnoconfig: $(TOPDIR)/scripts/kconfig/conf ./config.in $(TOPDIR)/scripts/kconfig/conf -n ./config.in @touch .config.stamp defconfig: $(TOPDIR)/scripts/kconfig/conf ./config.in $(TOPDIR)/scripts/kconfig/conf -d ./config.in @touch .config.stamp $(TOPDIR)/qmake/qmake : $(TOPDIR)/mkspecs/default $(TOPDIR)/mkspecs/default : ln -sf linux-g++ $@ $(TOPDIR)/scripts/subst : force @( \ echo 's,\$$QPE_VERSION,$(QPE_VERSION),g'; \ echo 's,\$$OPIE_VERSION,$(OPIE_VERSION),g'; \ echo 's,\$$QTE_VERSION,$(QTE_VERSION),g'; \ echo 's,\$$QTE_REVISION,$(QTE_REVISION),g'; \ echo 's,\$$SUB_VERSION,$(SUB_VERSION),g'; \ echo 's,\$$EXTRAVERSION,$(EXTRAVERSION),g'; \ echo 's,\$$QTE_BASEVERSION,$(QTE_BASEVERSION),g'; \ ) > $@ || ( rm -f $@; exit 1 ) $(TOPDIR)/scripts/filesubst : force @( \ echo 's,\$$OPIEDIR/root/,/,g'; \ echo 's,$(OPIEDIR)/root/,/,g'; \ echo 's,\$$OPIEDIR,$(prefix),g'; \ echo 's,$(OPIEDIR),$(prefix),g'; \ echo 's,\$$QTDIR,$(prefix),g'; \ echo 's,$(QTDIR),$(prefix),g'; \ echo 's,^\(\./\)*root/,/,g'; \ echo 's,^\(\./\)*etc/,$(prefix)/etc/,g'; \ echo 's,^\(\./\)*lib/,$(prefix)/lib/,g'; \ echo 's,^\(\./\)*bin/,$(prefix)/bin/,g'; \ echo 's,^\(\./\)*pics/,$(prefix)/pics/,g'; \ diff --git a/libslcompat/.cvsignore b/libslcompat/.cvsignore new file mode 100644 index 0000000..8f7300c --- a/dev/null +++ b/libslcompat/.cvsignore @@ -0,0 +1,6 @@ +Makefile* +moc* +*moc +*.o +~* + diff --git a/libslcompat/README b/libslcompat/README new file mode 100644 index 0000000..1bed034 --- a/dev/null +++ b/libslcompat/README @@ -0,0 +1,4 @@ +Skeleton for a compat library for the Sharp closed source libsl. +Early stage and will probably never be useful except for getting +some of the japaneese apps to compile. +Better pester Sharp to open up their sources. diff --git a/libslcompat/config.in b/libslcompat/config.in new file mode 100644 index 0000000..365d217 --- a/dev/null +++ b/libslcompat/config.in @@ -0,0 +1,4 @@ + config LIBSLCOMPAT + boolean "Sharp libsl compatibility library" + default "n" + depends on LIBOPIE2UI diff --git a/libslcompat/libslcompat.pro b/libslcompat/libslcompat.pro new file mode 100644 index 0000000..84d9ad6 --- a/dev/null +++ b/libslcompat/libslcompat.pro @@ -0,0 +1,16 @@ +TEMPLATE = lib +CONFIG += qte warn_on debug + +HEADERS = slcolorselector.h \ + slfileselector.h \ + slmisc.h + +SOURCES = slcolorselector.cpp \ + slfileselector.cpp + +TARGET = slcompat +INCLUDEPATH += $(OPIEDIR)/include +DESTDIR = $(OPIEDIR)/lib +LIBS += -lopiecore2 -lopieui2 -lqtaux2 + +include ( $(OPIEDIR)/include.pro ) diff --git a/libslcompat/slcolorselector.cpp b/libslcompat/slcolorselector.cpp new file mode 100644 index 0000000..18b408f --- a/dev/null +++ b/libslcompat/slcolorselector.cpp @@ -0,0 +1,64 @@ +#include "slcolorselector.h" + +SlColorTable::SlColorTable( QWidget *parent, const char *name,WFlags f, + int r, int c, const QRgb *a ) + :QTableView( parent, name, f ) +{ +} + +SlColorTable::~SlColorTable() +{ +} + +QSize SlColorTable::sizeHint() const +{ +} + +void SlColorTable::paintCell(QPainter*,int,int) +{ +} + +void SlColorTable::mousePressEvent(QMouseEvent*) +{ +} + +void SlColorTable::mouseMoveEvent(QMouseEvent*) +{ +} + +void SlColorTable::mouseReleaseEvent(QMouseEvent*) +{ +} + +void SlColorTable::keyPressEvent(QKeyEvent*) +{ +} + + +/*================================================================*/ + +SlColorSelector::SlColorSelector(bool isTransparentAccept, QWidget *parent, const char *name, WFlags f) + :QVBox( parent, name, f ) +{ +} + +SlColorSelector::~SlColorSelector() +{ +} + +/*================================================================*/ + +SlColorSelectorPopup::SlColorSelectorPopup(bool isTransparentAccept, QWidget *parent, const char *name, WFlags f) + :OColorPopupMenu( QColor(), parent, name ) +{ +} + + +SlColorSelectorPopup::~SlColorSelectorPopup() +{ +} + +void SlColorSelectorPopup::setCurrentColor(QRgb) +{ +} + diff --git a/libslcompat/slcolorselector.h b/libslcompat/slcolorselector.h new file mode 100644 index 0000000..e1ee1f2 --- a/dev/null +++ b/libslcompat/slcolorselector.h @@ -0,0 +1,112 @@ +/* + * Copyright (C) 2002 SHARP CORPORATION All rights reserved. + */ +#ifndef _SLCOLORSELECTOR_H_INCLUDED +#define _SLCOLORSELECTOR_H_INCLUDED + +#include <opie2/ocolorpopupmenu.h> +using namespace Opie; +#include <qtableview.h> +#include <qpopupmenu.h> +#include <qvbox.h> + +#define DEF_COLOR_R (6) +#define DEF_COLOR_C (8) +struct SlColorTablePrivate; +class SlColorTable : public QTableView +{ + Q_OBJECT +public: + SlColorTable(QWidget *parent=0,const char *name=NULL,WFlags f=0, + int r=DEF_COLOR_R,int c=DEF_COLOR_C,const QRgb *a=NULL); + ~SlColorTable(); + void setCurrentColor(QRgb); + +protected: + QSize sizeHint() const; + void paintCell(QPainter*,int,int); + void mousePressEvent(QMouseEvent*); + void mouseMoveEvent(QMouseEvent*); + void mouseReleaseEvent(QMouseEvent*); + void keyPressEvent(QKeyEvent*); + +signals: + + + void selected(QRgb rgb); + + + void reSelected(QRgb rgb); + +private: + SlColorTablePrivate *p; + void setCurrent(int,int); + void setSelected(int,int); + QRgb getRgbInCell(int,int); +}; + + +struct SlColorSelectorPrivate; +class SlColorSelector : public QVBox +{ + Q_OBJECT +public: + SlColorSelector(bool isTransparentAccept, + QWidget *parent=0,const char *name=NULL,WFlags f=0); + ~SlColorSelector(); + void setCurrentColor(QRgb); + void setCurrentColorTransparent(); + +signals: + + + void selected(QRgb rgb); + + + void reSelected(QRgb rgb); + + + void transparentSelected(); + + + void transparentReSelected(); +/* +private slots: + void slotTransparentToggled(int); +*/ +private: + SlColorSelectorPrivate *p; +}; + +struct SlColorSelectorPopupPrivate; +class SlColorSelectorPopup : public OColorPopupMenu //QPopupMenu +{ + Q_OBJECT +public: + SlColorSelectorPopup(bool isTransparentAccept, + QWidget *parent=0,const char *name=NULL,WFlags f=0); + ~SlColorSelectorPopup(); + void setCurrentColor(QRgb); + void setCurrentColorTransparent(); + +signals: + + + void selected(QRgb rgb); + + + void transparentSelected(); +/* +private slots: + void slotSelected(QRgb); + void slotReSelected(QRgb); + void slotTransparentSelected(); + void slotTransparentReSelected(); +*/ +private: + SlColorSelectorPopupPrivate *p; +}; + +#endif + + diff --git a/libslcompat/slfiledialog.h b/libslcompat/slfiledialog.h new file mode 100644 index 0000000..2ad105c --- a/dev/null +++ b/libslcompat/slfiledialog.h @@ -0,0 +1,70 @@ +/* + * Copyright (C) 2002 SHARP CORPORATION All rights reserved. + */ +#ifndef __SLFILEDIALOG_H__ +#define __SLFILEDIALOG_H__ + +#include <qdialog.h> +#include <qfileinfo.h> +#include <qvalidator.h> +#include <sl/slmisc.h> + +class SlFileNameValidator : public QValidator +{ + Q_OBJECT +public: + SlFileNameValidator( QWidget * parent, const char * name = 0 ) : QValidator(parent,name) {}; + virtual State validate(QString&,int&) const; + virtual void fixup(QString&) const; +}; + +class SlFileDialogPrivate; +class SlFileDialog : public QDialog +{ + Q_OBJECT +public: + + + SlFileDialog(bool bSaveAs = FALSE, QWidget * parent=0, const char * name=0, bool modal=TRUE, WFlags f=0 ); + + + virtual ~SlFileDialog(); + + + void setNewDirEnabled(bool); + + + void setDefaultFile( QString path ); + void setDefaultName( QString name ); + + + void setMimeType( QString mime ); + + + void setComplementExt( QString ext ); + + + void setIconViewType(bool isIcon); + + + QString &getFilePath(); + QString &getFileName(); + + int exec(); + +protected slots: + virtual void accept(); + + void fileSelected(const QFileInfo &fInfo); + void slotNewDir(); + void rotateChanged(); + void keyPressed(QKeyEvent*,bool&); + +protected: + void getDefaultColumnWidth(SlMisc::SlListColumnInfos &infos); + + SlFileDialogPrivate *m_pD; + +}; + +#endif diff --git a/libslcompat/slfileselector.cpp b/libslcompat/slfileselector.cpp new file mode 100644 index 0000000..3189b51 --- a/dev/null +++ b/libslcompat/slfileselector.cpp @@ -0,0 +1,86 @@ +#include "slfileselector.h" + +SlFileIconView::SlFileIconView( QWidget* parent, const char* name ) + :QIconView( parent, name ) +{ +} + +SlFileIconView::~SlFileIconView() +{ +} + +/*================================================================*/ + +SlFileListView::SlFileListView( QWidget* parent, const char* name ) + :QListView( parent, name ) +{ +} + +SlFileListView::~SlFileListView() +{ +} + +/*================================================================*/ + +SlFileSelector::SlFileSelector( const QString &dirPath, const QString &mimefilter, QWidget *parent, const char *name ) + :OFileSelector( dirPath, parent, name ) +{ +} + +SlFileSelector::~SlFileSelector() +{ +} + +bool SlFileSelector::isTopDir() +{ + return false; +} + +void SlFileSelector::setSelected() +{ +} + +void SlFileSelector::setSelected(const QString&) +{ + int a; +} + +void SlFileSelector::createFileList() +{ + int a; +} + +void SlFileSelector::createFileList(QDir&) +{ + int a; +} + +const QFileInfo* SlFileSelector::selected() +{ + int a; +} + +void SlFileSelector::setCurrentFile(const QString&) +{ + int a; +} + +const QString SlFileSelector::currentDir() +{ + int a; +} + + +void SlFileSelector::focusInEvent(QFocusEvent*) +{ +} + +void SlFileSelector::show() +{ +} + +void SlFileSelector::keyPressEvent( QKeyEvent *e ) +{ +} + + diff --git a/libslcompat/slfileselector.h b/libslcompat/slfileselector.h new file mode 100644 index 0000000..35fd11b --- a/dev/null +++ b/libslcompat/slfileselector.h @@ -0,0 +1,414 @@ +/* + * Copyright (C) 2002 SHARP CORPORATION All rights reserved. + */ +#ifndef _SLFILESELECTOR_H_INCLUDED +#define _SLFILESELECTOR_H_INCLUDED + +#include <opie2/ofileselector.h> +using namespace Opie; +#include <qhbox.h> +#include <qvbox.h> +#include <qlistview.h> +#include <qiconview.h> +#include <qtoolbutton.h> +#include <qfileinfo.h> +#include <qtableview.h> +#include <qwidgetstack.h> +#include <qvaluelist.h> + +#include <qpe/applnk.h> +#include <qpe/mimetype.h> +#include <sl/slmisc.h> + +class QComboBox; +class SlFileItemType; +class QCopChannel; + +struct SlFileListItemPrivate; +class SlFileListItem +{ +public: + SlFileListItem(const QFileInfo&,const MimeType&); + ~SlFileListItem(); + const QFileInfo &file() const; + const MimeType &mimeType() const; + const QString getItemIconFilePath() const; + const QString name() const; + void setName(const QString&); + const QString sortKey() const; + void setSortKey(const QString&); + QPixmap pixmap() const; + QPixmap bigPixmap() const; + const QString dateString() const; + const QString typeString() const; + const QString bytesString() const; + void setDevice(); + bool isDevice() const; + enum ColumnItem { + Name = 1, + Type, + Date, + Bytes, + Custom = 100 + }; +private: + SlFileListItemPrivate *p; + SlFileListItem(const SlFileListItem&); +}; + +typedef QValueList<SlFileListItem*> SlFileList; +typedef QValueList<SlFileListItem::ColumnItem> SlFileListColumnConf; + +class SlFileListViewItem; + +struct SlFileListViewPrivate; +class SlFileListView : public QListView +{ + Q_OBJECT + +public: + SlFileListView(QWidget*, const char*); + ~SlFileListView(); + void createFileList(SlFileList&); + int fileCount() const; + void updateItem(SlFileListViewItem*); + void createItem(SlFileListItem*); + void deleteItem(const QString&); + void deleteItem(SlFileListViewItem*); + SlFileListViewItem* searchItem(const QString&); + SlFileListColumnConf columnConf(); + void setColumnConf(SlFileListColumnConf&); + void updateColumn(); + static const QString columnItemName(SlFileListItem::ColumnItem); + static const SlFileListColumnConf columnItemList(); + + //virtual void takeItem( SlFileListViewItem * ); + + SlMisc::SlListColumnInfos columnWidthInfos(); + +protected: + //void keyPressEvent( QKeyEvent *e ); + +signals: + void keyPressed(QKeyEvent *e,bool &isAccepted); + +protected slots: + +private: + friend class SlFileSelector; + SlFileListViewPrivate *p; + SlFileListView(const SlFileListView&); +}; + +class SlFileIconViewItem; + +struct SlFileIconViewPrivate; +class SlFileIconView : public QIconView +{ + Q_OBJECT + +public: + SlFileIconView(QWidget*, const char*); + ~SlFileIconView(); + void createFileList(SlFileList&); + int fileCount() const; + void updateItem(SlFileIconViewItem*); + void createItem(SlFileListItem*); + void deleteItem(const QString&); + void deleteItem(SlFileIconViewItem*); + SlFileIconViewItem* searchItem(const QString&); + void setSorting(int column,bool ascending); + int sortColumn() const; + void repaintItemsForce(); + SlFileListColumnConf columnConf(); + void setColumnConf(SlFileListColumnConf&); + + //virtual void takeItem( SlFileIconViewItem * ); + +protected: + //void keyPressEvent( QKeyEvent *e ); + +protected slots: + +signals: + void keyPressed(QKeyEvent *e,bool &isAccepted); + +private: + friend class SlFileSelector; + SlFileIconViewPrivate *p; + SlFileIconView(const SlFileIconView&); +}; + +class SlFileSelectorFilter : public QObject +{ +public: + SlFileSelectorFilter(QWidget *parent,const char *name=0); + ~SlFileSelectorFilter(); + + virtual bool isAddToList(QFileInfo&) const = 0; +private: + SlFileSelectorFilter(const SlFileSelectorFilter&); +}; + +typedef QList<MimeType> SlFileMimeTypeList; + +struct SlFileSelectorPrivate; +class SlFileSelector : public OFileSelector /*QVBox*/ +{ + Q_OBJECT + +public: + + + enum SlFileSelectorViewType { + + ListView = 1, + + IconView + }; + + + enum SlFileOverwirteMode { + + Overwrite = 1, + + NewName, + + Error + }; + SlFileSelector(const QString &dirPath, + const QString &mimefilter, + QWidget *parent, + const char *name); + SlFileSelector(const QString ¤tFileName, + SlFileSelectorViewType type, + const QString &mimeFilter, + SlFileListColumnConf &items, + int sortColumn,bool sortAscending, + SlFileSelectorFilter *filter=NULL, + bool isRecursive=FALSE, + QWidget *parent=NULL, + const char *name=NULL, + WFlags f=0); + SlFileSelector(QWidget *parent=NULL,const char *name=NULL,WFlags f=0); + virtual ~SlFileSelector(); + void createFileList(); + void createFileList(QDir&); + int fileCount() const; + const QFileInfo* selected(); + void modifyItem(QFileInfo*,bool); + void createItem(QString&); + void deleteItem(const QString&); + void deleteItem(); + void updateItem(const QString&); + SlFileListItem* searchItem(const QString&); + void setSelected(); + void setSelected(const QString&); + void ensureItemVisible(); + SlFileListItem* selectedItem(); + bool setSelectedNext(bool); + bool setSelectedPrev(bool); + const QString currentDir(); + void setSorting(int,bool); + int sortColumn() const; + bool ascending() const; + SlFileSelectorViewType viewType(); + void setColumnItem(SlFileListColumnConf&); + void setViewType(SlFileSelectorViewType); + void setListView(); + void setIconView(); + int columnWidth(int); + void setColumnWidth(int,int); + static const QString columnItemName(SlFileListItem::ColumnItem); + static const SlFileListColumnConf columnItemList(); + + int columns() const; + + bool upDir(); + bool isTopDir(); + + void setCurrentFile(const QString&); + const QString currentFile(bool isReal=FALSE); + static bool copyFile(const QString&,const QString&, + SlFileOverwirteMode m=Error, + QString *resultName=NULL); + + static bool copyFileCreateDir(const QString &srcName, + const QString &dstName, + SlFileOverwirteMode m=Error, + QString *resultName=NULL); + static bool moveFile(const QString&,const QString&, + SlFileOverwirteMode m=Error, + QString *resultName=NULL); + static QString getCopyFileName(const QString&); + + const QStringList& recent() const; + void setRecent(const QStringList&); + + + void setRecent(const QStringList&,bool isReplace); + void setRecentEnabled(bool); + + const QStringList& history() const; + void setHistory(const QStringList&); + + + void setHistory(const QStringList&,bool isReplace); + bool isHistoryBackAvailable() const; + bool isHistoryForwardAvailable() const; + bool historyBack(); + bool historyForward(); + QPopupMenu *backHistoryPopupMenu() const; + QPopupMenu *forwardHistoryPopupMenu() const; + void setColumnConf(SlFileListColumnConf&); + + void sendFileUpdateMessage(const QString&); + void updateView(); + void recreateIcon(); + void focusToNext(); + void focusToPrev(); + bool rename(); + bool newfolder(); + bool del(); + bool duplicate(); + bool cut(); + bool copy(); + bool paste(); + void setMimeFilter(const QString &); + void clearTmpFolder(); + + void setRecursive(bool,bool); + bool recursive() const; + void setFilter(SlFileSelectorFilter *); + SlFileSelectorFilter *filter(); + bool isEnablePaste(); + + static bool deleteFile(const QString&); + static bool deleteDir(const QDir&); + static bool copyDir(const QString &srcName,const QString &dstName, + SlFileOverwirteMode m=Error); + static bool moveDir(const QString&,const QString&, + SlFileOverwirteMode m=Error); + static QString getCopyDirName(const QString &); + static bool makeDir(const QString &path); + + static uint size(const QString &fName); + static uint fileFree(const QString &fName); + + + + enum DesktopMode { + + HideDesktop = 1, + + ShowAll, + + FileTab + }; + void setDesktopMode(DesktopMode mode); + void setEnabledSystemChannel(bool); + void showUpDirBtn(bool); + void showWritableFile(bool); + + + void setEnableSD(bool); + void setEnableCF(bool); + bool getEnableSD(); + bool getEnableCF(); + + + + + void sendKeyPressEvent( QKeyEvent *e ); + + void setScale(int scale); + int scale() const; + + SlMisc::SlListColumnInfos columnWidthInfos(); + + + + enum FocusMode { + + Auto = 1, + + ByTab, + + ByCommand + }; + void setFocusMode(FocusMode mode); + + void adjustContentsSize(); + + static void updateFile(const QString &filename); + + bool delFile(const QString &mymsg); + + bool isIncludedFile(const QString &filename); + +signals: + + + void selectionChanged(const QFileInfo &file,bool isDevice); + + + void fileSelected(const QFileInfo &file); + + + void dirOpened(const QDir &dir); + + + void enabledPaste(bool); + + + void columnWidthChanged(int column,int oldSize,int newSize); + + + void itemRightPressed(const QFileInfo &file,const QPoint &pos); + + + void selectionLost(); + + + //void keyPressed(QKeyEvent *e,bool &isAccepted); +/* +private slots: + void fileClicked(QListViewItem *); + void fileClicked(QIconViewItem *); + void selectionChanged(QListViewItem *); + void selectionChanged(QIconViewItem *); + void dMenuChanged(int); + void changeDirectory(int,bool isImmediate=TRUE); + void hMenuSelected(int); + void cardMessage( const QCString &, const QByteArray &); + void systemMessage( const QCString &, const QByteArray &); + void headerClicked(int); + void asyncHMenuSelected(); + void asyncDMenuChanged(); + void rightPressed(QIconViewItem *,const QPoint&); + void rightPressed(QListViewItem *,const QPoint&,int); + void upDirClicked(); + void slotKeyPressed(QKeyEvent *e,bool &isAccepted); +*/ +protected: + void focusInEvent(QFocusEvent*); + void show(); + void keyPressEvent( QKeyEvent *e ); + +private: + void openDirInside(QDir&); + void createMyPda(); + void init(); + SlFileSelectorPrivate *p; + SlFileSelector(const SlFileSelector&); + ulong focusWidgets() const; + QWidget* nextFocus(QWidget *,bool) const; + bool focusToTheWidget(QWidget *); +}; + +#endif + + + + + diff --git a/libslcompat/slmisc.h b/libslcompat/slmisc.h new file mode 100644 index 0000000..20ba988 --- a/dev/null +++ b/libslcompat/slmisc.h @@ -0,0 +1,135 @@ +/* + * Copyright (C) 2002 SHARP CORPORATION All rights reserved. + */ +#ifndef _SLMISC_H_INCLUDED +#define _SLMISC_H_INCLUDED + +#include <qpe/qpeapplication.h> +#include <qfileinfo.h> +#include <qpe/global.h> +#include <qmessagebox.h> + + +#define _SLPOWER + +class QPopupMenu; +class QListView; +#if !defined(_SLPOWER) +class PowerStatus; +#else +class SlPowerStatus; +#endif +class Config; + +typedef ulong SlResolutionScale; + +class SlMisc { +public: + static bool isExecutable(const QString &c) { + QFileInfo exec(QPEApplication::qpeDir() + "/bin/" + c); + return exec.isExecutable(); + }; + static ulong availableMemory(); + static bool invalidFileName(QString &fName); + static QString getValidFileName(const QString &baseName); + static QString getCanonicalPath(const QString &fName); + static void enableAutoPowerOff(bool isOn); + static void enableAutoPowerOff(bool isOn,bool DimAlso,bool ScreenSaverAlso=FALSE); + static void enableLockApplication(bool); + static bool isTheSmbShareFileHasWriteEntry(const QString &shareFName); + static bool isTheSmbShareFileNowCopy(const QString &shareFName); + static bool checkTheSmbShareFileMode(const QString &shareFName, + char modeMask, char checkMode, bool equality); + static bool isTheFileLockedBySmbd(const QString &fName); + static bool isSambaForked(); + static void startSamba(); + static void stopSamba(); + enum ListType { Pid, CmdLine, Both }; + static QStringList procList (const QRegExp& re, uint max = 0, enum ListType type = Pid); + static void dumpMemInfo(bool isShowHeap); + static bool canCreateTheFile(const QString&); + static QString getLanguage(); + static QSize getMaximizedWidgetInfo(); + static QSize SlMisc::getScrollbarMetrics(); + static int getDpi(); + static SlResolutionScale getResolutionScale(); + static int getMaximizedWidgetContentsWidth(); + static bool isLandscape(); + static void requestCloseFile(const QString&); + static void requestOpenFile(const QString&); + + static void insertStandardFontMenu(QPopupMenu *pm); + static void insertAllFontMenu(QPopupMenu *pm); + static int getLogicalSizeFromMenuId(int id); + static void setFontSizeItemChecked(QPopupMenu *pm,int logicalSize); + static int getFontPointSize(int logicalSize); + static void toggleFontSize(QPopupMenu *pm,int &logicalSize,bool isLarge=true); + static void toggleAllFontSize(QPopupMenu *pm,int *fontSize,bool isLarge=true); + + static void SlFontArrange (QWidget* widget); + static void SlLayoutSpaceArrange (QObject* object); + + static bool checkBatteryError(const QString &module_name, bool force); + static bool checkBatteryErrorWithoutDialog(const QString &module_name, bool force); + + + enum InputDeviceType { + BuiltinKeyboard = 1, + SoftwareKeyboard = 2 + }; + static InputDeviceType defaultInputDevice(); + + + typedef struct SlListColumnInfo { + enum Type { + Fixed = 0, + StringLen, + Scale, + FixedDpiAware + }; + Type type; + QString str; + int val; + }; + typedef QValueList<SlListColumnInfo> SlListColumnInfos; + + static void setListColumnsWidth(QWidget *w,SlListColumnInfos &infos, + Config &config); + static void writeListColumnsWidth(QWidget *w,SlListColumnInfos &infos, + Config &config); + static void writeListColumnsWidth(QWidget *w,SlListColumnInfos &infos, + Config &config,bool isLandscape); + static void rotateListColumnsWidth(QWidget *w,SlListColumnInfos &infos, + Config &config); + static void setListColumnsWidth(QWidget *w,SlListColumnInfos &infos, Config *config=NULL); + static void writeListColumnsWidth(QWidget *w,SlListColumnInfos &infos, Config *config=NULL); + static void writeListColumnsWidth(QWidget *w,SlListColumnInfos &infos, bool isLandscape, Config *config=NULL); + static void rotateListColumnsWidth(QWidget *w,SlListColumnInfos &infos, Config *config=NULL); + static void temporaryMessageBox(const QString &caption, const QString &text, int msec=10000, QMessageBox::Icon icon=QMessageBox::NoIcon, int button0=0, int button1=0, int button2=0, QWidget *parent=0, const char *name=0, QWidget::WFlags f=QWidget::WStyle_DialogBorder); + + static QString defaultWallPaper(); + typedef enum AppCommand { + NoneCommand = 0, + NewCommand, + ModifyCommand, + DeleteCommand, + ZoomInCommand, + ZoomOutCommand, + CutCommand = 50, + CopyCommand, + PasteCommand + }; + static AppCommand appCommandFromKey(const QKeyEvent &e); + + typedef enum RequiredSize { + SmallSize = 0, + LargeSize + }; + static const char* getTmpPath(RequiredSize); + static const char* getTmpPath(ulong); + static QString getObexTmpPath(); + static ulong availableInternalStorage(void); + static QString moduleNameFromPath(const QString &path); +}; + +#endif @@ -1,186 +1,187 @@ CONFIG_ADDRESSBOOK core/pim/addressbook addressbook.pro CONFIG_ADVANCEDFM noncore/apps/advancedfm advancedfm.pro CONFIG_APPEARANCE2 noncore/settings/appearance2 appearance2.pro CONFIG_APPLET_EXAMPLE examples/applet example.pro CONFIG_APPSKEY noncore/settings/appskey appskey.pro CONFIG_AQPKG noncore/settings/aqpkg aqpkg.pro CONFIG_AUTOROTATEAPPLET noncore/applets/autorotateapplet autorotateapplet.pro CONFIG_BACKGAMMON noncore/games/backgammon backgammon.pro CONFIG_BACKUP noncore/settings/backup backup.pro CONFIG_BARTENDER noncore/apps/opie-bartender bartender.pro CONFIG_BATTERYAPPLET core/applets/batteryapplet batteryapplet.pro CONFIG_BEND noncore/unsupported/mail2/bend bend.pro CONFIG_BIGSCREEN_EXAMPLE libopie/big-screen/example osplitter_mail.pro CONFIG_BINARY noncore/tools/calc2/binary binary.pro CONFIG_BLUE-PIN noncore/net/opietooth/blue-pin blue-pin.pro CONFIG_BOUNCE noncore/games/bounce bounce.pro CONFIG_BUTTON-SETTINGS core/settings/button button.pro CONFIG_BUZZWORD noncore/games/buzzword buzzword.pro CONFIG_CALC2 noncore/tools/calc2 calc.pro CONFIG_CALCULATOR noncore/tools/calculator calculator.pro CONFIG_CALIBRATE core/apps/calibrate calibrate.pro CONFIG_CAMERA noncore/multimedia/camera camera.pro CONFIG_CARDMON core/applets/cardmon cardmon.pro CONFIG_CHECKBOOK noncore/apps/checkbook checkbook.pro CONFIG_CITYTIME core/settings/citytime citytime.pro CONFIG_CLIPBOARDAPPLET core/applets/clipboardapplet clipboardapplet.pro CONFIG_CLOCKAPPLET core/applets/clockapplet clockapplet.pro CONFIG_CLOCK noncore/tools/clock clock.pro CONFIG_CONFEDIT noncore/apps/confedit confedit.pro CONFIG_DASHER inputmethods/dasher dasher.pro CONFIG_DATEBOOK core/pim/datebook datebook.pro CONFIG_DECO_FLAT noncore/decorations/flat flat.pro CONFIG_DECO_LIQUID noncore/decorations/liquid liquid.pro CONFIG_DECO_POLISHED noncore/decorations/polished polished.pro CONFIG_DICTIONARY noncore/apps/dictionary dictionary.pro CONFIG_DOCTAB noncore/settings/doctab doctab.pro CONFIG_DRAWPAD noncore/graphics/drawpad drawpad.pro CONFIG_DVORAK inputmethods/dvorak dvorak.pro CONFIG_EMBEDDEDKONSOLE core/apps/embeddedkonsole embeddedkonsole.pro CONFIG_EUROCONV noncore/tools/euroconv/ euroconv.pro CONFIG_EXAMPLE_BOARD examples/inputmethod example.pro CONFIG_EXAMPLE_MENU examples/menuapplet menuapplet.pro CONFIG_EXAMPLE_VPN examples/networksettings example.pro CONFIG_FIFTEEN noncore/games/fifteen fifteen.pro CONFIG_FILEBROWSER noncore/unsupported/filebrowser filebrowser.pro CONFIG_FLAT noncore/styles/flat flat.pro CONFIG_FORMATTER noncore/tools/formatter formatter.pro CONFIG_FREETYPE freetype freetype.pro CONFIG_FRESH noncore/styles/fresh fresh.pro CONFIG_FTPLIB noncore/net/ftplib ftplib.pro CONFIG_GO noncore/games/go go.pro CONFIG_GSMTOOL noncore/unsupported/gsmtool gsmtool.pro CONFIG_HANDWRITING inputmethods/handwriting handwriting.pro CONFIG_HELPBROWSER core/apps/helpbrowser helpbrowser.pro CONFIG_HOMEAPPLET core/applets/homeapplet homeapplet.pro CONFIG_INTERFACES noncore/settings/networksettings/interfaces interfaces.pro CONFIG_IRDAAPPLET core/applets/irdaapplet irdaapplet.pro CONFIG_JUMPX inputmethods/jumpx jumpx.pro CONFIG_KBILL noncore/games/kbill kbill.pro CONFIG_KCHECKERS noncore/games/kcheckers kcheckers.pro CONFIG_KEYBOARD inputmethods/keyboard keyboard.pro CONFIG_KEYPEBBLE noncore/comm/keypebble keypebble.pro CONFIG_KEYVIEW development/keyview keyview.pro CONFIG_KEYZCFG noncore/apps/keyz-cfg keyz-cfg.pro CONFIG_KJUMPX inputmethods/kjumpx kjumpx.pro CONFIG_KPACMAN noncore/games/kpacman kpacman.pro CONFIG_LANGUAGE noncore/settings/language language.pro CONFIG_LAUNCHER_CORE core/launcher server.pro CONFIG_LAUNCHER-SETTINGS core/settings/launcher launcher.pro CONFIG_LIBFFMPEG core/multimedia/opieplayer/libffmpeg libffmpeg.pro CONFIG_LIBFLASH core/multimedia/opieplayer/libflash libflash.pro CONFIG_LIBKATE noncore/apps/tinykate/libkate libkate.pro CONFIG_LIBMAD core/multimedia/opieplayer/libmad libmad.pro CONFIG_LIBMAIL noncore/unsupported/mail2/libmail libmail.pro CONFIG_LIBMAILWRAPPER noncore/net/mail/libmailwrapper libmailwrapper.pro CONFIG_LIBMPEG3 core/multimedia/opieplayer/libmpeg3 libmpeg3.pro CONFIG_LIBOPIE2CORE libopie2/opiecore opiecore.pro CONFIG_LIBOPIE2DB libopie2/opiedb opiedb.pro CONFIG_LIBOPIE2EXAMPLES libopie2/examples examples.pro CONFIG_LIBOPIE2MM libopie2/opiemm opiemm.pro CONFIG_LIBOPIE2NET libopie2/opienet opienet.pro CONFIG_LIBOPIE2PIM libopie2/opiepim opiepim.pro CONFIG_LIBOPIE2UI libopie2/opieui opieui.pro CONFIG_LIBOPIE libopie libopie.pro CONFIG_LIBOPIE_PIM libopie/pim pim.pro CONFIG_LIBOPIETOOTH noncore/net/opietooth/lib lib.pro CONFIG_LIBQPE library library.pro CONFIG_LIBQPE-X11 x11/libqpe-x11 libqpe-x11.pro CONFIG_LIBQTAUX libqtaux libqtaux.pro CONFIG_LIBSQL libsql libsql.pro +CONFIG_LIBSLCOMPAT libslcompat libslcompat.pro CONFIG_LIBTREMOR core/multimedia/opieplayer/vorbis/tremor tremor.pro CONFIG_LIBTREMORPLUGIN core/multimedia/opieplayer/vorbis libtremor.pro CONFIG_LIGHT-AND-POWER core/settings/light-and-power light-and-power.pro CONFIG_LIQUID noncore/styles/liquid liquid.pro CONFIG_LOGOUTAPPLET core/applets/logoutapplet logoutapplet.pro CONFIG_MAIL3 noncore/net/mail mail.pro CONFIG_MAILAPPLET noncore/net/mail/taskbarapplet taskbarapplet.pro CONFIG_MAILIT noncore/unsupported/mailit mailit.pro CONFIG_MAIN_TAB_EXAMPLE examples/main-tab example.pro CONFIG_MEDIUMMOUNT noncore/settings/mediummount mediummount.pro CONFIG_MEMORYAPPLET noncore/applets/memoryapplet memoryapplet.pro CONFIG_METAL noncore/styles/metal metal.pro CONFIG_MINDBREAKER noncore/games/mindbreaker mindbreaker.pro CONFIG_MINESWEEP noncore/games/minesweep minesweep.pro CONFIG_MOBILEMSG noncore/comm/mobilemsg mobilemsg.pro CONFIG_MODPLUG core/multimedia/opieplayer/modplug modplug.pro CONFIG_MULTIKEYAPPLET core/applets/multikeyapplet multikeyapplet.pro CONFIG_MULTIKEY inputmethods/multikey multikey.pro CONFIG_NETSYSTEMTIME noncore/settings/netsystemtime netsystemtime.pro CONFIG_NETWORKAPPLET noncore/applets/networkapplet networkapplet.pro CONFIG_NETWORKSETUP noncore/settings/networksettings networksettings.pro CONFIG_NOTESAPPLET noncore/applets/notesapplet notesapplet.pro CONFIG_OAPP core/apps/oapp oapp.pro CONFIG_OBEX core/applets/obex2 obex.pro CONFIG_ODICT noncore/apps/odict odict.pro CONFIG_OIPKG noncore/unsupported/oipkg oipkg.pro CONFIG_OPIEALARM core/opiealarm CONFIG_OPIE-CONSOLE noncore/apps/opie-console opie-console.pro CONFIG_OPIEFTP noncore/net/opieftp opieftp.pro CONFIG_OPIEIRC noncore/net/opieirc opieirc.pro CONFIG_OPIE-LOGIN core/opie-login opie-login.pro CONFIG_OPIEMAIL2 noncore/unsupported/mail2 mail.pro CONFIG_OPIEPLAYER2 noncore/multimedia/opieplayer2 opieplayer2.pro CONFIG_OPIEPLAYER core/multimedia/opieplayer opieplayer.pro CONFIG_OPIE-RDESKTOP noncore/net/opierdesktop opierdesktop.pro CONFIG_OPIE-READER noncore/apps/opie-reader opie-reader.pro CONFIG_OPIEREC noncore/multimedia/opierec opierec.pro CONFIG_OPIE-SHEET noncore/apps/opie-sheet opie-sheet.pro CONFIG_OPIE-SH noncore/tools/opie-sh opie-sh.pro CONFIG_OPIETOOTH-APPLET noncore/net/opietooth/applet applet.pro CONFIG_OPIETOOTH-MANAGER noncore/net/opietooth/manager manager.pro CONFIG_OPIE-WRITE noncore/apps/opie-write opie-write.pro CONFIG_OSEARCH core/pim/osearch osearch.pro CONFIG_OXYGEN noncore/apps/oxygen oxygen.pro CONFIG_PACKAGEMANAGER noncore/settings/packagemanager packagemanager.pro CONFIG_PARASHOOT noncore/games/parashoot parashoot.pro CONFIG_PICKBOARD inputmethods/pickboard pickboard.pro CONFIG_POWERCHORD noncore/multimedia/powerchord powerchord.pro CONFIG_PPP noncore/settings/networksettings/ppp ppp.pro CONFIG_QASHMONEY noncore/apps/qashmoney qashmoney.pro CONFIG_QASTEROIDS noncore/games/qasteroids qasteroids.pro CONFIG_QCOP core/apps/qcop qcop.pro CONFIG_QPDF noncore/unsupported/qpdf qpdf.pro CONFIG_QUICKLAUNCHER core/tools/quicklauncher quicklauncher.pro CONFIG_QWS core/qws qws.pro CONFIG_REMOTE noncore/tools/remote remote.pro CONFIG_RESTARTAPPLET2 core/applets/restartapplet2 restartapplet2.pro CONFIG_RESTARTAPPLET core/applets/restartapplet restartapplet.pro CONFIG_ROTATEAPPLET core/applets/rotateapplet rotateapplet.pro CONFIG_ROTATION noncore/settings/rotation rotation.pro CONFIG_RUNAPPLET core/applets/runapplet runapplet.pro CONFIG_SCREENSHOTAPPLET core/applets/screenshotapplet screenshotapplet.pro CONFIG_SECURITY core/settings/security security.pro CONFIG_SFCAVE noncore/games/sfcave sfcave.pro CONFIG_SFCAVE-SDL noncore/games/sfcave-sdl sfcave-sdl.pro CONFIG_SHOWIMG noncore/multimedia/showimg showimg.pro CONFIG_SIMPLE_EXAMPLE examples/simple example.pro CONFIG_SIMPLE_ICON examples/simple-icon example.pro CONFIG_SIMPLE_MAIN examples/simple-main example.pro CONFIG_SIMPLE noncore/tools/calc2/simple simple.pro CONFIG_SIMPLE_PIM examples/simple-pim example.pro CONFIG_SINGLE single single.pro CONFIG_SNAKE noncore/games/snake snake.pro CONFIG_SOLITAIRE noncore/games/solitaire solitaire.pro CONFIG_SOUND noncore/settings/sound sound.pro CONFIG_SSHKEYS noncore/settings/sshkeys sshkeys.pro CONFIG_SUSPENDAPPLET core/applets/suspendapplet suspendapplet.pro CONFIG_SYSINFO noncore/settings/sysinfo sysinfo.pro CONFIG_TABLEVIEWER noncore/apps/tableviewer tableviewer.pro CONFIG_TABMANAGER noncore/settings/tabmanager tabmanager.pro CONFIG_TABOAPP core/apps/taboapp taboapp.pro CONFIG_TEST libsql/test test.pro CONFIG_TEST noncore/apps/opie-console/test test.pro CONFIG_TETRIX noncore/games/tetrix tetrix.pro CONFIG_TEXTEDIT core/apps/textedit textedit.pro CONFIG_THEME noncore/styles/theme theme.pro CONFIG_TICTAC noncore/games/tictac tictac.pro CONFIG_TINYKATE noncore/apps/tinykate tinykate.pro CONFIG_TODAY_ADDRESSBOOK core/pim/today/plugins/addressbook addressbook.pro CONFIG_TODAY core/pim/today today.pro CONFIG_TODAY_DATEBOOK core/pim/today/plugins/datebook datebook.pro CONFIG_TODAY_EXAMPLE examples/todayplugin example.pro CONFIG_TODAY_FORTUNE noncore/todayplugins/fortune fortune.pro CONFIG_TODAY_MAIL core/pim/today/plugins/mail mail.pro CONFIG_TODAY_STOCKTICKERLIB noncore/todayplugins/stockticker/stocktickerlib stocktickerlib.pro CONFIG_TODAY_STOCKTICKER noncore/todayplugins/stockticker/stockticker stockticker.pro |