author | chicken <chicken> | 2004-03-01 19:04:23 (UTC) |
---|---|---|
committer | chicken <chicken> | 2004-03-01 19:04:23 (UTC) |
commit | b5a544bf520ce6d0d8f7b314720e6a703079dc1d (patch) (unidiff) | |
tree | b12ff3722689c2de5d9f594f20a0f5ee4a082e76 | |
parent | 54a73e15350ea3cc4886a81572cef6e7876be26a (diff) | |
download | opie-b5a544bf520ce6d0d8f7b314720e6a703079dc1d.zip opie-b5a544bf520ce6d0d8f7b314720e6a703079dc1d.tar.gz opie-b5a544bf520ce6d0d8f7b314720e6a703079dc1d.tar.bz2 |
fiox includes
-rw-r--r-- | noncore/apps/odict/configdlg.cpp | 4 | ||||
-rw-r--r-- | noncore/apps/odict/dingwidget.cpp | 3 | ||||
-rw-r--r-- | noncore/apps/odict/odict.cpp | 5 | ||||
-rw-r--r-- | noncore/apps/odict/searchmethoddlg.cpp | 3 |
4 files changed, 0 insertions, 15 deletions
diff --git a/noncore/apps/odict/configdlg.cpp b/noncore/apps/odict/configdlg.cpp index b12a395..7fa6008 100644 --- a/noncore/apps/odict/configdlg.cpp +++ b/noncore/apps/odict/configdlg.cpp | |||
@@ -11,33 +11,29 @@ | |||
11 | * This program is free software; you can redistribute it and/or modify * | 11 | * This program is free software; you can redistribute it and/or modify * |
12 | * it under the terms of the GNU General Public License as published by * | 12 | * it under the terms of the GNU General Public License as published by * |
13 | * the Free Software Foundation; either version 2 of the License, or * | 13 | * the Free Software Foundation; either version 2 of the License, or * |
14 | * ( at your option ) any later version. * | 14 | * ( at your option ) any later version. * |
15 | * * | 15 | * * |
16 | **************************************************************************/ | 16 | **************************************************************************/ |
17 | #include "configdlg.h" | 17 | #include "configdlg.h" |
18 | #include "searchmethoddlg.h" | 18 | #include "searchmethoddlg.h" |
19 | 19 | ||
20 | #include <qpe/qpeapplication.h> | 20 | #include <qpe/qpeapplication.h> |
21 | #include <qpe/config.h> | 21 | #include <qpe/config.h> |
22 | 22 | ||
23 | #include <qdialog.h> | ||
24 | #include <qlayout.h> | 23 | #include <qlayout.h> |
25 | #include <qhbox.h> | ||
26 | #include <qvbox.h> | 24 | #include <qvbox.h> |
27 | #include <qlabel.h> | ||
28 | #include <qlistview.h> | 25 | #include <qlistview.h> |
29 | #include <qpushbutton.h> | 26 | #include <qpushbutton.h> |
30 | #include <qlineedit.h> | 27 | #include <qlineedit.h> |
31 | #include <qstringlist.h> | ||
32 | 28 | ||
33 | ConfigDlg::ConfigDlg(QWidget *parent, const char *name, bool modal) : QDialog(parent, name, modal) | 29 | ConfigDlg::ConfigDlg(QWidget *parent, const char *name, bool modal) : QDialog(parent, name, modal) |
34 | { | 30 | { |
35 | setCaption( tr( "Options" ) ); | 31 | setCaption( tr( "Options" ) ); |
36 | QVBoxLayout *vbox_layout = new QVBoxLayout( this ); | 32 | QVBoxLayout *vbox_layout = new QVBoxLayout( this ); |
37 | search_tab = new QWidget( this , "search_tab" ); | 33 | search_tab = new QWidget( this , "search_tab" ); |
38 | QVBoxLayout *vbox_layout_searchtab = new QVBoxLayout( search_tab, 4 , 4 ,"blah" ); | 34 | QVBoxLayout *vbox_layout_searchtab = new QVBoxLayout( search_tab, 4 , 4 ,"blah" ); |
39 | 35 | ||
40 | QHBox *hbox = new QHBox( search_tab ); | 36 | QHBox *hbox = new QHBox( search_tab ); |
41 | list = new QListView( hbox ); | 37 | list = new QListView( hbox ); |
42 | list->addColumn( tr( "Searchmethod" ) ); | 38 | list->addColumn( tr( "Searchmethod" ) ); |
43 | loadSearchMethodNames(); | 39 | loadSearchMethodNames(); |
diff --git a/noncore/apps/odict/dingwidget.cpp b/noncore/apps/odict/dingwidget.cpp index c804385..ef36ee5 100644 --- a/noncore/apps/odict/dingwidget.cpp +++ b/noncore/apps/odict/dingwidget.cpp | |||
@@ -9,28 +9,25 @@ | |||
9 | /*************************************************************************** | 9 | /*************************************************************************** |
10 | * * | 10 | * * |
11 | * This program is free software; you can redistribute it and/or modify * | 11 | * This program is free software; you can redistribute it and/or modify * |
12 | * it under the terms of the GNU General Public License as published by * | 12 | * it under the terms of the GNU General Public License as published by * |
13 | * the Free Software Foundation; either version 2 of the License, or * | 13 | * the Free Software Foundation; either version 2 of the License, or * |
14 | * ( at your option ) any later version. * | 14 | * ( at your option ) any later version. * |
15 | * * | 15 | * * |
16 | **************************************************************************/ | 16 | **************************************************************************/ |
17 | #include "dingwidget.h" | 17 | #include "dingwidget.h" |
18 | 18 | ||
19 | #include <qfile.h> | 19 | #include <qfile.h> |
20 | #include <qpe/config.h> | 20 | #include <qpe/config.h> |
21 | #include <qstring.h> | ||
22 | #include <qtextstream.h> | 21 | #include <qtextstream.h> |
23 | #include <qstringlist.h> | ||
24 | #include <qregexp.h> | ||
25 | 22 | ||
26 | DingWidget::DingWidget( ) | 23 | DingWidget::DingWidget( ) |
27 | { | 24 | { |
28 | methodname = QString::null; | 25 | methodname = QString::null; |
29 | trenner = QString::null; | 26 | trenner = QString::null; |
30 | lines = 0L; | 27 | lines = 0L; |
31 | } | 28 | } |
32 | 29 | ||
33 | void DingWidget::loadDict( QString name ) | 30 | void DingWidget::loadDict( QString name ) |
34 | { | 31 | { |
35 | lines.clear(); //as we will load a new list we have to | 32 | lines.clear(); //as we will load a new list we have to |
36 | //remove the old one | 33 | //remove the old one |
diff --git a/noncore/apps/odict/odict.cpp b/noncore/apps/odict/odict.cpp index 9718c5c..d5c6d75 100644 --- a/noncore/apps/odict/odict.cpp +++ b/noncore/apps/odict/odict.cpp | |||
@@ -9,35 +9,30 @@ | |||
9 | /*************************************************************************** | 9 | /*************************************************************************** |
10 | * * | 10 | * * |
11 | * This program is free software; you can redistribute it and/or modify * | 11 | * This program is free software; you can redistribute it and/or modify * |
12 | * it under the terms of the GNU General Public License as published by * | 12 | * it under the terms of the GNU General Public License as published by * |
13 | * the Free Software Foundation; either version 2 of the License, or * | 13 | * the Free Software Foundation; either version 2 of the License, or * |
14 | * ( at your option ) any later version. * | 14 | * ( at your option ) any later version. * |
15 | * * | 15 | * * |
16 | **************************************************************************/ | 16 | **************************************************************************/ |
17 | #include "odict.h" | 17 | #include "odict.h" |
18 | #include "configdlg.h" | 18 | #include "configdlg.h" |
19 | #include "dingwidget.h" | 19 | #include "dingwidget.h" |
20 | 20 | ||
21 | #include <qlayout.h> | ||
22 | #include <qpopupmenu.h> | ||
23 | #include <qmenubar.h> | 21 | #include <qmenubar.h> |
24 | #include <qmessagebox.h> | 22 | #include <qmessagebox.h> |
25 | #include <qhbox.h> | ||
26 | #include <qvbox.h> | 23 | #include <qvbox.h> |
27 | #include <qlabel.h> | 24 | #include <qlabel.h> |
28 | #include <qpushbutton.h> | 25 | #include <qpushbutton.h> |
29 | #include <qlineedit.h> | 26 | #include <qlineedit.h> |
30 | #include <qmainwindow.h> | ||
31 | #include <qstring.h> | ||
32 | #include <qaction.h> | 27 | #include <qaction.h> |
33 | #include <qtextbrowser.h> | 28 | #include <qtextbrowser.h> |
34 | #include <qcombobox.h> | 29 | #include <qcombobox.h> |
35 | 30 | ||
36 | #include <qpe/resource.h> | 31 | #include <qpe/resource.h> |
37 | #include <qpe/config.h> | 32 | #include <qpe/config.h> |
38 | 33 | ||
39 | ODict::ODict(QWidget* parent, const char* name, WFlags fl ) : QMainWindow(parent, name, fl ) | 34 | ODict::ODict(QWidget* parent, const char* name, WFlags fl ) : QMainWindow(parent, name, fl ) |
40 | { | 35 | { |
41 | activated_name = QString::null; | 36 | activated_name = QString::null; |
42 | 37 | ||
43 | vbox = new QVBox( this ); | 38 | vbox = new QVBox( this ); |
diff --git a/noncore/apps/odict/searchmethoddlg.cpp b/noncore/apps/odict/searchmethoddlg.cpp index abe2966..f71cfd8 100644 --- a/noncore/apps/odict/searchmethoddlg.cpp +++ b/noncore/apps/odict/searchmethoddlg.cpp | |||
@@ -13,31 +13,28 @@ | |||
13 | * the Free Software Foundation; either version 2 of the License, or * | 13 | * the Free Software Foundation; either version 2 of the License, or * |
14 | * ( at your option ) any later version. * | 14 | * ( at your option ) any later version. * |
15 | * * | 15 | * * |
16 | **************************************************************************/ | 16 | **************************************************************************/ |
17 | #include "searchmethoddlg.h" | 17 | #include "searchmethoddlg.h" |
18 | 18 | ||
19 | #include <opie2/ofileselector.h> | 19 | #include <opie2/ofileselector.h> |
20 | #include <opie2/ofiledialog.h> | 20 | #include <opie2/ofiledialog.h> |
21 | 21 | ||
22 | #include <qpe/config.h> | 22 | #include <qpe/config.h> |
23 | #include <qpe/qpeapplication.h> | 23 | #include <qpe/qpeapplication.h> |
24 | 24 | ||
25 | #include <qdialog.h> | ||
26 | #include <qlayout.h> | 25 | #include <qlayout.h> |
27 | #include <qhbox.h> | ||
28 | #include <qvbox.h> | 26 | #include <qvbox.h> |
29 | #include <qlabel.h> | 27 | #include <qlabel.h> |
30 | #include <qpushbutton.h> | 28 | #include <qpushbutton.h> |
31 | #include <qstring.h> | ||
32 | #include <qlineedit.h> | 29 | #include <qlineedit.h> |
33 | #include <qdir.h> | 30 | #include <qdir.h> |
34 | 31 | ||
35 | using Opie::OFileDialog; | 32 | using Opie::OFileDialog; |
36 | using Opie::OFileSelector; | 33 | using Opie::OFileSelector; |
37 | 34 | ||
38 | SearchMethodDlg::SearchMethodDlg(QWidget *parent, const char *name, bool modal, QString itemname) : QDialog(parent, name, modal) | 35 | SearchMethodDlg::SearchMethodDlg(QWidget *parent, const char *name, bool modal, QString itemname) : QDialog(parent, name, modal) |
39 | { | 36 | { |
40 | 37 | ||
41 | QVBoxLayout *vbox_layout = new QVBoxLayout( this, 4,4,"vbox_layout" ); | 38 | QVBoxLayout *vbox_layout = new QVBoxLayout( this, 4,4,"vbox_layout" ); |
42 | QVBox *vbox = new QVBox( this ); | 39 | QVBox *vbox = new QVBox( this ); |
43 | 40 | ||