author | cniehaus <cniehaus> | 2002-12-29 16:49:48 (UTC) |
---|---|---|
committer | cniehaus <cniehaus> | 2002-12-29 16:49:48 (UTC) |
commit | 95e2d570a5f7dd3611858a55ac7956ab7ece6f3d (patch) (unidiff) | |
tree | 92c5abc77298eb69d506f2b7717d4f6a8d7e231f | |
parent | 5a0893171cf82ebad8347ab9dbc1193f9fcabda3 (diff) | |
download | opie-95e2d570a5f7dd3611858a55ac7956ab7ece6f3d.zip opie-95e2d570a5f7dd3611858a55ac7956ab7ece6f3d.tar.gz opie-95e2d570a5f7dd3611858a55ac7956ab7ece6f3d.tar.bz2 |
more gui, started with the real code
-rw-r--r-- | noncore/apps/odict/configdlg.cpp | 23 | ||||
-rw-r--r-- | noncore/apps/odict/searchmethoddlg.cpp | 75 | ||||
-rw-r--r-- | noncore/apps/odict/searchmethoddlg.h | 13 |
3 files changed, 103 insertions, 8 deletions
diff --git a/noncore/apps/odict/configdlg.cpp b/noncore/apps/odict/configdlg.cpp index 75dc735..2056457 100644 --- a/noncore/apps/odict/configdlg.cpp +++ b/noncore/apps/odict/configdlg.cpp | |||
@@ -26,6 +26,7 @@ | |||
26 | #include <qlabel.h> | 26 | #include <qlabel.h> |
27 | #include <qlistview.h> | 27 | #include <qlistview.h> |
28 | #include <qpushbutton.h> | 28 | #include <qpushbutton.h> |
29 | #include <qlineedit.h> | ||
29 | 30 | ||
30 | #include <opie/otabwidget.h> | 31 | #include <opie/otabwidget.h> |
31 | 32 | ||
@@ -46,8 +47,6 @@ ConfigDlg::ConfigDlg(QWidget *parent, const char *name, bool modal) : QDialog(pa | |||
46 | QHBox *hbox = new QHBox( search_tab ); | 47 | QHBox *hbox = new QHBox( search_tab ); |
47 | list = new QListView( hbox ); | 48 | list = new QListView( hbox ); |
48 | list->addColumn( tr( "Searchmethod" ) ); | 49 | list->addColumn( tr( "Searchmethod" ) ); |
49 | QListViewItem *item = new QListViewItem( list ); | ||
50 | item->setText( 0, "foofooofoofoof" ); | ||
51 | 50 | ||
52 | QVBox *vbox = new QVBox( hbox ); | 51 | QVBox *vbox = new QVBox( hbox ); |
53 | new_button = new QPushButton( "New" , vbox ); | 52 | new_button = new QPushButton( "New" , vbox ); |
@@ -75,14 +74,28 @@ void ConfigDlg::slotNewMethod() | |||
75 | SearchMethodDlg dlg( this, "SearchMethodDlg", true ); | 74 | SearchMethodDlg dlg( this, "SearchMethodDlg", true ); |
76 | if ( dlg.exec() == QDialog::Accepted ) | 75 | if ( dlg.exec() == QDialog::Accepted ) |
77 | { | 76 | { |
78 | //dlg.saveItem(); | 77 | dlg.saveItem(); |
79 | QListViewItem *item = new QListViewItem( list ); | 78 | QListViewItem *item = new QListViewItem( list ); |
80 | item->setText( 0 , dlg.itemName ); | 79 | item->setText( 0 , dlg.nameLE->text() ); |
81 | } | 80 | } |
82 | else qDebug( "SearchMethodDlg abgebrochen" ); | 81 | else qDebug( "SearchMethodDlg abgebrochen" ); |
83 | } | 82 | } |
84 | 83 | ||
85 | void ConfigDlg::slotChangeMethod(){} | 84 | void ConfigDlg::slotChangeMethod() |
85 | { | ||
86 | if ( list->selectedItem() ) | ||
87 | { | ||
88 | SearchMethodDlg dlg( this, "SearchMethodDlg", true, list->selectedItem()->text( 0 ) ); | ||
89 | if ( dlg.exec() == QDialog::Accepted ) | ||
90 | { | ||
91 | dlg.saveItem(); | ||
92 | QListViewItem *item = new QListViewItem( list ); | ||
93 | item->setText( 0 , dlg.nameLE->text() ); | ||
94 | } | ||
95 | else qDebug( "SearchMethodDlg abgebrochen" ); | ||
96 | } | ||
97 | else qDebug( "kein item angewählt" ); | ||
98 | } | ||
86 | 99 | ||
87 | void ConfigDlg::slotDeleteMethod() | 100 | void ConfigDlg::slotDeleteMethod() |
88 | { | 101 | { |
diff --git a/noncore/apps/odict/searchmethoddlg.cpp b/noncore/apps/odict/searchmethoddlg.cpp index cd8a58a..0572f11 100644 --- a/noncore/apps/odict/searchmethoddlg.cpp +++ b/noncore/apps/odict/searchmethoddlg.cpp | |||
@@ -25,12 +25,83 @@ | |||
25 | #include <qlabel.h> | 25 | #include <qlabel.h> |
26 | #include <qpushbutton.h> | 26 | #include <qpushbutton.h> |
27 | #include <qstring.h> | 27 | #include <qstring.h> |
28 | #include <qlineedit.h> | ||
28 | 29 | ||
29 | SearchMethodDlg::SearchMethodDlg(QWidget *parent, const char *name, bool modal) : QDialog(parent, name, modal) | 30 | #include <opie/ofileselector.h> |
31 | #include <opie/ofiledialog.h> | ||
32 | |||
33 | SearchMethodDlg::SearchMethodDlg(QWidget *parent, const char *name, bool modal, QString itemname) : QDialog(parent, name, modal) | ||
30 | { | 34 | { |
35 | if( !itemname ) | ||
31 | setCaption( tr( "New Searchmethod" ) ); | 36 | setCaption( tr( "New Searchmethod" ) ); |
37 | else | ||
38 | { | ||
39 | setCaption( tr( "Change Searchmethod" ) ); | ||
40 | itemName = itemname; | ||
41 | setupEntries(itemname); | ||
42 | } | ||
43 | |||
44 | QVBoxLayout *vbox_layout = new QVBoxLayout( this, 4,4,"vbox_layout" ); | ||
45 | QVBox *vbox = new QVBox( this ); | ||
46 | |||
47 | QHBox *hbox1 = new QHBox( vbox ); | ||
48 | QLabel *nameLabel = new QLabel( tr( "Name:" ) , hbox1 ); | ||
49 | nameLE = new QLineEdit( hbox1 ); | ||
50 | |||
51 | QLabel *dictLabel = new QLabel( tr( "Dictionary file" ), vbox ); | ||
52 | QHBox *hbox2 = new QHBox( vbox ); | ||
53 | dictFileLE = new QLineEdit( hbox2 ); | ||
54 | QPushButton *browseButton = new QPushButton( tr( "Browse" ) , hbox2 ); | ||
55 | connect( browseButton, SIGNAL( clicked() ), this, SLOT( slotBrowse() ) ); | ||
56 | |||
57 | QWidget *dummywidget = new QWidget( vbox ); | ||
58 | QLabel *lag1 = new QLabel( tr( "Language 1" ),dummywidget); | ||
59 | QLabel *devider = new QLabel( tr( "Decollator" ),dummywidget); | ||
60 | QLabel *lag2 = new QLabel( tr( "Language 2" ),dummywidget); | ||
61 | lang1 = new QLineEdit( dummywidget ); | ||
62 | lang2 = new QLineEdit( dummywidget ); | ||
63 | trenner = new QLineEdit( dummywidget ); | ||
64 | trenner->setText( "::" ); | ||
65 | |||
66 | QGridLayout *grid = new QGridLayout( dummywidget, 2,3 ); | ||
67 | grid->addWidget( lag1, 0,0 ); | ||
68 | grid->addWidget( devider, 0,1 ); | ||
69 | grid->addWidget( lag2, 0,2 ); | ||
70 | grid->addWidget( lang1, 1,0 ); | ||
71 | grid->addWidget( trenner, 1,1 ); | ||
72 | grid->addWidget( lang2, 1,2 ); | ||
73 | |||
74 | vbox_layout->addWidget( vbox ); | ||
32 | 75 | ||
33 | itemName = "foo"; | ||
34 | showMaximized(); | 76 | showMaximized(); |
35 | } | 77 | } |
36 | 78 | ||
79 | void SearchMethodDlg::setupEntries( QString item ) | ||
80 | { | ||
81 | Config cfg( "odict" ); | ||
82 | cfg.setGroup( itemName ); | ||
83 | trenner->setText( "foooof" ); | ||
84 | //X trenner->setText( cfg.readEntry( "Seperator" ) ); | ||
85 | //X lang1->setText( cfg.readEntry( "Lang1" ) ); | ||
86 | //X lang2->setText( cfg.readEntry( "Lang2" ) ); | ||
87 | //X nameLE->setText( itemName ); | ||
88 | //X dictFileLE->setText( cfg.readEntry( "file" ) ); | ||
89 | } | ||
90 | |||
91 | void SearchMethodDlg::slotBrowse() | ||
92 | { | ||
93 | itemName=OFileDialog::getOpenFileName( OFileSelector::EXTENDED,"/home/carsten" ); | ||
94 | dictFileLE->setText( itemName ); | ||
95 | } | ||
96 | |||
97 | void SearchMethodDlg::saveItem() | ||
98 | { | ||
99 | QString name = nameLE->text(); | ||
100 | Config cfg( "odict" ); | ||
101 | cfg.setGroup( name ); | ||
102 | cfg.writeEntry( "Name", name ); | ||
103 | cfg.writeEntry( "Seperator", trenner->text() ); | ||
104 | cfg.writeEntry( "Lang1", lang1->text() ); | ||
105 | cfg.writeEntry( "Lang2", lang2->text() ); | ||
106 | cfg.writeEntry( "file", dictFileLE->text() ); | ||
107 | } | ||
diff --git a/noncore/apps/odict/searchmethoddlg.h b/noncore/apps/odict/searchmethoddlg.h index e277cfb..d98842f 100644 --- a/noncore/apps/odict/searchmethoddlg.h +++ b/noncore/apps/odict/searchmethoddlg.h | |||
@@ -8,6 +8,7 @@ | |||
8 | **************************************************************************/ | 8 | **************************************************************************/ |
9 | 9 | ||
10 | class QWidget; | 10 | class QWidget; |
11 | class QLineEdit; | ||
11 | class OTabWidget; | 12 | class OTabWidget; |
12 | class QListView; | 13 | class QListView; |
13 | class QPushButton; | 14 | class QPushButton; |
@@ -22,8 +23,18 @@ class SearchMethodDlg : public QDialog | |||
22 | Q_OBJECT | 23 | Q_OBJECT |
23 | 24 | ||
24 | public: | 25 | public: |
25 | SearchMethodDlg(QWidget *parent, const char *name, bool modal=FALSE ); | 26 | SearchMethodDlg(QWidget *parent, const char *name, bool modal=FALSE, QString itemname=0 ); |
26 | 27 | ||
27 | QString itemName; | 28 | QString itemName; |
29 | QLineEdit *nameLE; | ||
30 | QLineEdit *lang1, *lang2, *trenner; | ||
31 | void saveItem(); | ||
32 | |||
33 | private: | ||
34 | QLineEdit *dictFileLE; | ||
35 | void setupEntries( QString ); | ||
36 | |||
37 | private slots: | ||
38 | void slotBrowse(); | ||
28 | 39 | ||
29 | }; | 40 | }; |