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.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/noncore/settings/mediummount/mediumwidget.cc b/noncore/settings/mediummount/mediumwidget.cc
index eadf502..981e1dd 100644
--- a/noncore/settings/mediummount/mediumwidget.cc
+++ b/noncore/settings/mediummount/mediumwidget.cc
@@ -1,72 +1,74 @@
1 1
2 2
3#include <qcheckbox.h> 3#include <qcheckbox.h>
4#include <qgroupbox.h> 4#include <qgroupbox.h>
5#include <qhbox.h> 5#include <qhbox.h>
6#include <qlabel.h> 6#include <qlabel.h>
7#include <qabstractlayout.h> 7#include <qabstractlayout.h>
8#include <qlayout.h> 8#include <qlayout.h>
9#include <qlineedit.h> 9#include <qlineedit.h>
10#include <qpixmap.h> 10#include <qpixmap.h>
11#include <qpushbutton.h> 11#include <qpushbutton.h>
12#include <qvbox.h> 12#include <qvbox.h>
13#include <qwhatsthis.h> 13#include <qwhatsthis.h>
14 14
15 15
16#include <qpe/config.h> 16#include <qpe/config.h>
17#include <qpe/qpeapplication.h> 17#include <qpe/qpeapplication.h>
18 18
19#include "mediumwidget.h" 19#include "mediumwidget.h"
20 20
21 21
22 22
23using namespace MediumMountSetting; 23using namespace MediumMountSetting;
24 24
25/* TRANSLATOR MediumMountSetting::MediumMountWidget */
26
25MediumMountWidget::MediumMountWidget(const QString &path, 27MediumMountWidget::MediumMountWidget(const QString &path,
26 const QPixmap &pix, 28 const QPixmap &pix,
27 QWidget *parent, 29 QWidget *parent,
28 const char *name ) 30 const char *name )
29 : QWidget( parent, name ) 31 : QWidget( parent, name )
30{ 32{
31 if(parent == 0){ 33 if(parent == 0){
32 resize(QApplication::desktop()->width(), QApplication::desktop()->height() ); 34 resize(QApplication::desktop()->width(), QApplication::desktop()->height() );
33 }else{ 35 }else{
34 resize(parent->width(), parent->height() ); 36 resize(parent->width(), parent->height() );
35 } 37 }
36 m_path = path; 38 m_path = path;
37 initGUI(); 39 initGUI();
38 m_label->setPixmap(pix ); 40 m_label->setPixmap(pix );
39 m_config = 0; 41 m_config = 0;
40 42
41 readConfig(); 43 readConfig();
42} 44}
43// now we fire up the GUI 45// now we fire up the GUI
44// if I would know what I'm doing ;) 46// if I would know what I'm doing ;)
45void MediumMountWidget::initGUI() 47void MediumMountWidget::initGUI()
46{ 48{
47 //main layout 49 //main layout
48 m_box = new QVBoxLayout( this , 5, 5 ); 50 m_box = new QVBoxLayout( this , 5, 5 );
49 //m_box->setSpacing( 5 ); 51 //m_box->setSpacing( 5 );
50 //m_box->addStretch( -1 ); 52 //m_box->addStretch( -1 );
51 53
52 // picture + text 54 // picture + text
53 m_infoBox = new QHBox(this, "infobox" ); 55 m_infoBox = new QHBox(this, "infobox" );
54 //m_infoBox->setSpacing( 4 ); 56 //m_infoBox->setSpacing( 4 );
55 m_label = new QLabel(m_infoBox ); 57 m_label = new QLabel(m_infoBox );
56 m_desc = new QLabel(m_infoBox ); 58 m_desc = new QLabel(m_infoBox );
57 m_desc->setTextFormat( Qt::RichText ); 59 m_desc->setTextFormat( Qt::RichText );
58 QWhatsThis::add( this, tr("Configure this medium. The changes will" 60 QWhatsThis::add( this, tr("Configure this medium. The changes will"
59 " go into effect when the application gets" 61 " go into effect when the application gets"
60 " closed. To update the Document Tab you need" 62 " closed. To update the Document Tab you need"
61 " to remove and insert this medium.")); 63 " to remove and insert this medium."));
62 m_desc->setText("" ); 64 m_desc->setText("" );
63 m_box->addWidget( m_infoBox ); // add the widget to the layout 65 m_box->addWidget( m_infoBox ); // add the widget to the layout
64 66
65 67
66 // groupbox 68 // groupbox
67 m_group = new QGroupBox(tr("Which media files"), this, "MediaFiles" ); 69 m_group = new QGroupBox(tr("Which media files"), this, "MediaFiles" );
68 m_checks = new QGridLayout( m_group, 4, 3 ); 70 m_checks = new QGridLayout( m_group, 4, 3 );
69 //m_checks->setMargin( 12 ); 71 //m_checks->setMargin( 12 );
70 72
71 73
72 74