summaryrefslogtreecommitdiff
path: root/libopie
authorzecke <zecke>2002-04-13 23:18:09 (UTC)
committer zecke <zecke>2002-04-13 23:18:09 (UTC)
commit707f0d3dd81b8ecec2df4e942c0efd2ee51b7fc5 (patch) (side-by-side diff)
treed17645bbf5e0318e6e10c3377605c107a110ebd1 /libopie
parent0f7ff8056deb70f1c32bdcf46bb2b623063bdc1c (diff)
downloadopie-707f0d3dd81b8ecec2df4e942c0efd2ee51b7fc5.zip
opie-707f0d3dd81b8ecec2df4e942c0efd2ee51b7fc5.tar.gz
opie-707f0d3dd81b8ecec2df4e942c0efd2ee51b7fc5.tar.bz2
PopupMenu for fontsize handling like on the Zaurus
Diffstat (limited to 'libopie') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie/libopie.pro4
-rw-r--r--libopie/ofontmenu.cc78
-rw-r--r--libopie/ofontmenu.h77
-rw-r--r--libopie/tododb.cpp1
4 files changed, 158 insertions, 2 deletions
diff --git a/libopie/libopie.pro b/libopie/libopie.pro
index 3c8da78..ddc0c33 100644
--- a/libopie/libopie.pro
+++ b/libopie/libopie.pro
@@ -1,7 +1,7 @@
TEMPLATE = lib
CONFIG += qte warn_on release
-HEADERS = ofileselector.h ofiledialog.h tododb.h todoevent.h todoresource.h todovcalresource.h xmltree.h oconfig.h
-SOURCES = ofileselector.cc ofiledialog.cc xmltree.cc tododb.cpp todoevent.cpp todovcalresource.cpp oconfig.cpp
+HEADERS = ofontmenu.h ofileselector.h ofiledialog.h tododb.h todoevent.h todoresource.h todovcalresource.h xmltree.h oconfig.h
+SOURCES = ofontmenu.cc ofileselector.cc ofiledialog.cc xmltree.cc tododb.cpp todoevent.cpp todovcalresource.cpp oconfig.cpp
TARGET = opie
INCLUDEPATH += $(OPIEDIR)/include
DESTDIR = $(QTDIR)/lib$(PROJMAK)
diff --git a/libopie/ofontmenu.cc b/libopie/ofontmenu.cc
new file mode 100644
index 0000000..2acae1c
--- a/dev/null
+++ b/libopie/ofontmenu.cc
@@ -0,0 +1,78 @@
+
+#include "ofontmenu.h"
+
+
+
+OFontMenu::OFontMenu(QWidget *parent, const char *name, const QList<QWidget> &list )
+ : QPopupMenu( parent, name )
+{
+ m_list = list;
+ insertItem(tr("Large"), this, SLOT(slotLarge() ),
+ 0, 10);
+ insertItem(tr("Medium"), this, SLOT(slotMedium() ),
+ 0, 11 );
+ insertItem(tr("Small"), this, SLOT(slotSmall() ),
+ 0, 12 );
+ setCheckable( true );
+}
+void OFontMenu::setWidgets(const QList<QWidget> &list )
+{
+ m_list = list;
+}
+void OFontMenu::addWidget( QWidget *wid )
+{
+ m_list.append(wid );
+}
+void OFontMenu::removeWidget( QWidget *wid )
+{
+ m_list.remove( wid );
+}
+const QList<QWidget> &OFontMenu::widgets()const
+{
+ return m_list;
+}
+void OFontMenu::forceSize(QWidget *wid, int size )
+{
+ WidSize *widz = new WidSize;
+ widz->wid = wid;
+ widz->size = size;
+ m_wids.append( widz );
+}
+void OFontMenu::slotSmall()
+{
+ setItemChecked(10, false );
+ setItemChecked(11, false );
+ setItemChecked(12, true );
+ setFontSize( 8 );
+}
+void OFontMenu::slotMedium()
+{
+ setItemChecked(10, false );
+ setItemChecked(11, true );
+ setItemChecked(12, false );
+ setFontSize(10 );
+}
+void OFontMenu::slotLarge()
+{
+ setItemChecked(10, true );
+ setItemChecked(11, false );
+ setItemChecked(12, false );
+ setFontSize(14 );
+}
+void OFontMenu::setFontSize(int size )
+{
+ QWidget *wid;
+ for(wid = m_list.first(); wid !=0; wid = m_list.next() ){
+ QFont font = wid->font();
+ font.setPointSize( size );
+ wid->setFont( font );
+ }
+ if(!m_wids.isEmpty() ){
+ WidSize *wids;
+ for( wids = m_wids.first(); wids != 0; wids = m_wids.next() ){
+ QFont font = wids->wid->font();
+ font.setPointSize( wids->size );
+ wids->wid->setFont( font );
+ }
+ }
+}
diff --git a/libopie/ofontmenu.h b/libopie/ofontmenu.h
new file mode 100644
index 0000000..37a628e
--- a/dev/null
+++ b/libopie/ofontmenu.h
@@ -0,0 +1,77 @@
+
+/*
+
+               =. This file is part of the OPIE Project
+             .=l. Copyright (c) 2002 zekce <zecke@handhelds.org>
+           .>+-=
+ _;:,     .>    :=|. This library is free software; you can
+.> <`_,   >  .   <= redistribute it and/or modify it under
+:`=1 )Y*s>-.--   : the terms of the GNU Library General Public
+.="- .-=="i,     .._ License as published by the Free Software
+ - .   .-<_>     .<> Foundation; either version 2 of the License,
+     ._= =}       : or (at your option) any later version.
+    .%`+i>       _;_.
+    .i_,=:_.      -<s. This library is distributed in the hope that
+     +  .  -:.       = it will be useful, but WITHOUT ANY WARRANTY;
+    : ..    .:,     . . . without even the implied warranty of
+    =_        +     =;=|` MERCHANTABILITY or FITNESS FOR A
+  _.=:.       :    :=>`: PARTICULAR PURPOSE. See the GNU
+..}^=.=       =       ; Library General Public License for more
+++=   -.     .`     .: details.
+ :     =  ...= . :.=-
+ -.   .:....=;==+<; You should have received a copy of the GNU
+  -_. . .   )=.  = Library General Public License along with
+    --        :-=` this library; see the file COPYING.LIB.
+ If not, write to the Free Software Foundation,
+ Inc., 59 Temple Place - Suite 330,
+ Boston, MA 02111-1307, USA.
+
+*/
+
+
+
+
+#ifndef ofontmenu_h
+#define ofontmenu_h
+
+#include <qpopupmenu.h>
+#include <qlist.h>
+
+
+namespace {
+ struct WidSize {
+ QWidget *wid;
+ int size;
+ };
+
+};
+
+// if i would be on kde this would be a KActionMenu...
+class OFontMenu : public QPopupMenu {
+ Q_OBJECT
+ public:
+ OFontMenu(QWidget *parent, const char* name, const QList<QWidget> &list );
+ void setWidgets(const QList<QWidget> &list );
+ void addWidget(QWidget *wid );
+ void forceSize(QWidget *wid, int size );
+ void removeWidget(QWidget *wid );
+ const QList<QWidget> &widgets()const;
+
+ private:
+ QList<QWidget> m_list;
+ QList<WidSize> m_wids;
+ class OFontMenuPrivate;
+ OFontMenuPrivate *d;
+ private slots:
+ virtual void slotSmall();
+ virtual void slotMedium();
+ virtual void slotLarge();
+ void setFontSize(int size );
+};
+
+#endif
+
+
+
+
+
diff --git a/libopie/tododb.cpp b/libopie/tododb.cpp
index 7814c4f..3f6dc30 100644
--- a/libopie/tododb.cpp
+++ b/libopie/tododb.cpp
@@ -48,6 +48,7 @@ public:
stream << "<!DOCTYPE Tasks>" << endl;
tasks->save(stream );
delete tasks;
+ stream << "</Tasks>" << endl;
file.close();
return true;
}