summaryrefslogtreecommitdiff
path: root/noncore/settings/mediummount/mediumwidget.cc
Unidiff
Diffstat (limited to 'noncore/settings/mediummount/mediumwidget.cc') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/mediummount/mediumwidget.cc190
1 files changed, 190 insertions, 0 deletions
diff --git a/noncore/settings/mediummount/mediumwidget.cc b/noncore/settings/mediummount/mediumwidget.cc
new file mode 100644
index 0000000..9ce024e
--- a/dev/null
+++ b/noncore/settings/mediummount/mediumwidget.cc
@@ -0,0 +1,190 @@
1
2
3#include <qcheckbox.h>
4#include <qgroupbox.h>
5#include <qhbox.h>
6#include <qlabel.h>
7#include <qabstractlayout.h>
8#include <qlayout.h>
9#include <qlineedit.h>
10#include <qpixmap.h>
11#include <qpushbutton.h>
12#include <qvbox.h>
13
14
15#include <qpe/config.h>
16#include <qpe/qpeapplication.h>
17
18#include "mediumwidget.h"
19
20
21
22using namespace MediumMountSetting;
23
24MediumMountWidget::MediumMountWidget(const QString &path,
25 const QPixmap &pix,
26 QWidget *parent,
27 const char *name )
28 : QWidget( parent, name )
29{
30 if(parent == 0){
31 resize(QApplication::desktop()->width(), QApplication::desktop()->height() );
32 }else{
33 resize(parent->width(), parent->height() );
34 }
35 m_path = path;
36 initGUI();
37 m_label->setPixmap(pix );
38 m_config = 0;
39
40 readConfig();
41}
42// now we fire up the GUI
43// if I would know what I'm doing ;)
44void MediumMountWidget::initGUI()
45{
46 //main layout
47 m_box = new QVBoxLayout( this , 5, 5 );
48 m_box->setSpacing( 5 );
49 //m_box->addStretch( -1 );
50
51 // picture + text
52 m_infoBox = new QHBox(this, "infobox" );
53 m_infoBox->setSpacing( 4 );
54 m_label = new QLabel(m_infoBox );
55 m_desc = new QLabel(m_infoBox );
56 m_desc->setTextFormat( Qt::RichText );
57 m_desc->setText("Configure this medium. The changes will"
58 "go into effect when the application get's"
59 "closed. To update the Document Tab you need"
60 "to removeand insert this medium." );
61 m_box->addWidget( m_infoBox ); // add the widget to the layout
62
63
64 // groupbox
65 m_group = new QGroupBox(tr("Which media files"), this, "MediaFiles" );
66 m_checks = new QGridLayout( m_group, 4, 3 );
67 m_checks->setMargin( 12 );
68
69
70
71 QSpacerItem *item2 = new QSpacerItem(5, 8,
72 QSizePolicy::Fixed,
73 QSizePolicy::Fixed);
74 m_box->addItem( item2 );
75
76 m_audio = new QCheckBox( tr("Audio"), m_group );
77 m_all = new QCheckBox( tr("All") , m_group );
78 m_image = new QCheckBox( tr("Image"), m_group );
79 m_text = new QCheckBox( tr("Text") , m_group );
80 m_video = new QCheckBox( tr("Video"), m_group );
81
82 QSpacerItem *iti1b = new QSpacerItem(2, 10, QSizePolicy::Fixed,
83 QSizePolicy::Fixed );
84 m_checks->addItem( iti1b, 0, 0 );
85
86 m_checks->addWidget(m_audio, 1, 0 );
87 m_checks->addWidget(m_image, 2, 0 );
88 m_checks->addWidget(m_all , 3, 0 );
89
90 m_checks->addWidget(m_text, 1, 2 );
91 m_checks->addWidget(m_video, 2, 2 );
92
93 m_checks->addRowSpacing(0, 8 );
94 m_checks->addColSpacing(1, 2 );
95 m_checks->setColStretch(1, -2 );
96
97 connect(m_all, SIGNAL(stateChanged(int) ),
98 this, SLOT(slotStateChanged() ) );
99
100 m_box->addWidget( m_group );
101
102 // label
103 m_lblPath = new QLabel(tr("Limit search to:"), this );
104 m_box->addWidget( m_lblPath );
105
106 // add to
107 m_hboxAdd = new QHBox( this );
108 m_hboxAdd->setSpacing( 10 );
109 m_edit = new QLineEdit(m_hboxAdd );
110 m_add = new QPushButton(m_hboxAdd );
111 m_add->setText( tr("Add") );
112
113 m_box->addWidget(m_hboxAdd );
114
115 m_always = new QCheckBox( tr("Always check this medium"), this );
116
117 m_box->addWidget( m_always );
118
119 QSpacerItem *item = new QSpacerItem(5, 50,
120 QSizePolicy::Fixed,
121 QSizePolicy::Expanding );
122 m_box->addItem(item );
123}
124
125void MediumMountWidget::readConfig( )
126{
127 if( m_config == 0 )
128 m_config = new Config(m_path + "/.opiestorage.cf", Config::File );
129 m_config->setGroup( "main" );
130
131 m_always->setChecked( m_config->readBoolEntry("check", false) );
132
133 m_config->setGroup( "mimetypes" );
134 if( m_config->readBoolEntry("all", false ) ){
135 m_audio->setEnabled( false );
136 m_image->setEnabled( false );
137 m_text->setEnabled ( false );
138 m_video->setEnabled( false );
139 m_all->setChecked( true );
140 }else{
141 m_audio->setEnabled( true );
142 m_image->setEnabled( true );
143 m_text->setEnabled ( true );
144 m_all->setEnabled ( true );
145
146 m_all->setChecked( false );
147
148 m_audio->setChecked( m_config->readBoolEntry("audio", true ) );
149 m_image->setChecked( m_config->readBoolEntry("image", true ) );
150 m_text->setChecked ( m_config->readBoolEntry("text" , true ) );
151 m_video->setChecked( m_config->readBoolEntry("video", true ) );
152 };
153}
154
155void MediumMountWidget::writeConfig()
156{
157 m_config->setGroup("main");
158 m_config->writeEntry("check", m_always->isChecked() );
159
160 m_config->setGroup("mimetypes" );
161 if(m_all->isChecked() ){
162 m_config->writeEntry("all", true );
163 }else{
164 m_config->writeEntry("audio", m_audio->isChecked() );
165 m_config->writeEntry("image", m_image->isChecked() );
166 m_config->writeEntry("text" , m_text->isChecked() );
167 m_config->writeEntry("video", m_video->isChecked() );
168 }
169}
170MediumMountWidget::~MediumMountWidget()
171{
172 writeConfig();
173 delete m_config;
174}
175
176
177void MediumMountWidget::slotAdd()
178{
179
180}
181void MediumMountWidget::slotStateChanged()
182{
183 bool state = !(m_all->isChecked());
184
185 m_audio->setEnabled( state );
186 m_text->setEnabled ( state );
187 m_video->setEnabled( state );
188 m_image->setEnabled( state );
189
190}