-rw-r--r-- | noncore/graphics/opie-eye/gui/mainwindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/graphics/opie-eye/gui/mainwindow.cpp b/noncore/graphics/opie-eye/gui/mainwindow.cpp index 295f93f..7570ee3 100644 --- a/noncore/graphics/opie-eye/gui/mainwindow.cpp +++ b/noncore/graphics/opie-eye/gui/mainwindow.cpp | |||
@@ -1,141 +1,141 @@ | |||
1 | /* | 1 | /* |
2 | * GPLv2 zecke@handhelds.org | 2 | * GPLv2 zecke@handhelds.org |
3 | * No WArranty... | 3 | * No WArranty... |
4 | */ | 4 | */ |
5 | #include "mainwindow.h" | 5 | #include "mainwindow.h" |
6 | #include "imageview.h" | 6 | #include "imageview.h" |
7 | 7 | ||
8 | #include "iconview.h" | 8 | #include "iconview.h" |
9 | #include "filesystem.h" | 9 | #include "filesystem.h" |
10 | #include "imageinfoui.h" | 10 | #include "imageinfoui.h" |
11 | #include "viewmodebutton.h" | 11 | #include "viewmodebutton.h" |
12 | #include "basesetup.h" | 12 | #include "basesetup.h" |
13 | 13 | ||
14 | #include <iface/ifaceinfo.h> | 14 | #include <iface/ifaceinfo.h> |
15 | #include <iface/dirview.h> | 15 | #include <iface/dirview.h> |
16 | 16 | ||
17 | #include <opie2/odebug.h> | 17 | #include <opie2/odebug.h> |
18 | #include <opie2/owidgetstack.h> | 18 | #include <opie2/owidgetstack.h> |
19 | #include <opie2/oapplicationfactory.h> | 19 | #include <opie2/oapplicationfactory.h> |
20 | #include <opie2/otabwidget.h> | 20 | #include <opie2/otabwidget.h> |
21 | #include <opie2/okeyconfigwidget.h> | 21 | #include <opie2/okeyconfigwidget.h> |
22 | 22 | ||
23 | #include <qpe/resource.h> | 23 | #include <qpe/resource.h> |
24 | #include <qpe/config.h> | 24 | #include <qpe/config.h> |
25 | #include <qpe/ir.h> | 25 | #include <qpe/ir.h> |
26 | #include <qpe/storage.h> | 26 | #include <qpe/storage.h> |
27 | #include <qpe/applnk.h> | 27 | #include <qpe/applnk.h> |
28 | 28 | ||
29 | #include <qtoolbar.h> | 29 | #include <qtoolbar.h> |
30 | #include <qtoolbutton.h> | 30 | #include <qtoolbutton.h> |
31 | #include <qlayout.h> | 31 | #include <qlayout.h> |
32 | #include <qdialog.h> | 32 | #include <qdialog.h> |
33 | #include <qmap.h> | 33 | #include <qmap.h> |
34 | #include <qtimer.h> | 34 | #include <qtimer.h> |
35 | #include <qframe.h> | 35 | #include <qframe.h> |
36 | #include <qmenubar.h> | 36 | #include <qmenubar.h> |
37 | #include <qaction.h> | 37 | #include <qaction.h> |
38 | 38 | ||
39 | //OPIE_EXPORT_APP_V2( Opie::Core::OApplicationFactory<PMainWindow>,"Opie Eye" ) | 39 | //OPIE_EXPORT_APP_V2( Opie::Core::OApplicationFactory<PMainWindow>,"Opie Eye" ) |
40 | OPIE_EXPORT_APP( Opie::Core::OApplicationFactory<PMainWindow>) | 40 | OPIE_EXPORT_APP( Opie::Core::OApplicationFactory<PMainWindow>) |
41 | 41 | ||
42 | PMainWindow::PMainWindow(QWidget* wid, const char* name, WFlags style) | 42 | PMainWindow::PMainWindow(QWidget* wid, const char* name, WFlags style) |
43 | : QMainWindow( wid, name, style ), m_info( 0 ), m_disp( 0 ) | 43 | : QMainWindow( wid, name, style ), m_info( 0 ), m_disp( 0 ) |
44 | { | 44 | { |
45 | setCaption( QObject::tr("Opie Eye Caramba" ) ); | 45 | setCaption( QObject::tr("Opie Eye" ) ); |
46 | m_cfg = new Opie::Core::OConfig("opie-eye"); | 46 | m_cfg = new Opie::Core::OConfig("opie-eye"); |
47 | m_cfg->setGroup("main" ); | 47 | m_cfg->setGroup("main" ); |
48 | readConfig(); | 48 | readConfig(); |
49 | m_setDocCalled = false; | 49 | m_setDocCalled = false; |
50 | m_polishDone = false; | 50 | m_polishDone = false; |
51 | 51 | ||
52 | m_storage = new StorageInfo(); | 52 | m_storage = new StorageInfo(); |
53 | connect(m_storage, SIGNAL(disksChanged() ), | 53 | connect(m_storage, SIGNAL(disksChanged() ), |
54 | this, SLOT( dirChanged() ) ); | 54 | this, SLOT( dirChanged() ) ); |
55 | 55 | ||
56 | m_stack = new Opie::Ui::OWidgetStack( this ); | 56 | m_stack = new Opie::Ui::OWidgetStack( this ); |
57 | setCentralWidget( m_stack ); | 57 | setCentralWidget( m_stack ); |
58 | 58 | ||
59 | m_view = new PIconView( m_stack, m_cfg ); | 59 | m_view = new PIconView( m_stack, m_cfg ); |
60 | m_stack->addWidget( m_view, IconView ); | 60 | m_stack->addWidget( m_view, IconView ); |
61 | m_stack->raiseWidget( IconView ); | 61 | m_stack->raiseWidget( IconView ); |
62 | 62 | ||
63 | connect(m_view, SIGNAL(sig_display(const QString&)), | 63 | connect(m_view, SIGNAL(sig_display(const QString&)), |
64 | this, SLOT(slotDisplay(const QString&))); | 64 | this, SLOT(slotDisplay(const QString&))); |
65 | connect(m_view, SIGNAL(sig_showInfo(const QString&)), | 65 | connect(m_view, SIGNAL(sig_showInfo(const QString&)), |
66 | this, SLOT(slotShowInfo(const QString&)) ); | 66 | this, SLOT(slotShowInfo(const QString&)) ); |
67 | connect(this,SIGNAL(changeListMode(int)),m_view,SLOT(slotChangeMode(int))); | 67 | connect(this,SIGNAL(changeListMode(int)),m_view,SLOT(slotChangeMode(int))); |
68 | 68 | ||
69 | m_stack->forceMode(Opie::Ui::OWidgetStack::NoForce); | 69 | m_stack->forceMode(Opie::Ui::OWidgetStack::NoForce); |
70 | 70 | ||
71 | listviewMenu = 0; | 71 | listviewMenu = 0; |
72 | /* setup menu and toolbar */ | 72 | /* setup menu and toolbar */ |
73 | setupActions(); | 73 | setupActions(); |
74 | setupToolbar(); | 74 | setupToolbar(); |
75 | setupMenu(); | 75 | setupMenu(); |
76 | m_aHideToolbar->setOn(m_cfg->readBoolEntry("showtoolbar",true)); | 76 | m_aHideToolbar->setOn(m_cfg->readBoolEntry("showtoolbar",true)); |
77 | m_aAutoRotate->setEnabled(!m_aUnscaled->isOn()); | 77 | m_aAutoRotate->setEnabled(!m_aUnscaled->isOn()); |
78 | odebug << "mainwindow constructor done" << oendl; | 78 | odebug << "mainwindow constructor done" << oendl; |
79 | } | 79 | } |
80 | 80 | ||
81 | PMainWindow::~PMainWindow() { | 81 | PMainWindow::~PMainWindow() { |
82 | } | 82 | } |
83 | 83 | ||
84 | void PMainWindow::slotToggleZoomer() | 84 | void PMainWindow::slotToggleZoomer() |
85 | { | 85 | { |
86 | m_aZoomer->setOn(!m_aZoomer->isOn()); | 86 | m_aZoomer->setOn(!m_aZoomer->isOn()); |
87 | } | 87 | } |
88 | 88 | ||
89 | void PMainWindow::slotZoomerToggled(bool how) | 89 | void PMainWindow::slotZoomerToggled(bool how) |
90 | { | 90 | { |
91 | if (m_disp) { | 91 | if (m_disp) { |
92 | m_disp->setShowZoomer(how); | 92 | m_disp->setShowZoomer(how); |
93 | } | 93 | } |
94 | if (autoSave) { | 94 | if (autoSave) { |
95 | m_cfg->writeEntry("zoomeron",how); | 95 | m_cfg->writeEntry("zoomeron",how); |
96 | } | 96 | } |
97 | } | 97 | } |
98 | 98 | ||
99 | void PMainWindow::slotToggleAutorotate() | 99 | void PMainWindow::slotToggleAutorotate() |
100 | { | 100 | { |
101 | if (!m_aAutoRotate->isEnabled()) return; | 101 | if (!m_aAutoRotate->isEnabled()) return; |
102 | m_aAutoRotate->setOn(!m_aAutoRotate->isOn()); | 102 | m_aAutoRotate->setOn(!m_aAutoRotate->isOn()); |
103 | } | 103 | } |
104 | 104 | ||
105 | void PMainWindow::slotToggleAutoscale() | 105 | void PMainWindow::slotToggleAutoscale() |
106 | { | 106 | { |
107 | m_aUnscaled->setOn(!m_aUnscaled->isOn()); | 107 | m_aUnscaled->setOn(!m_aUnscaled->isOn()); |
108 | } | 108 | } |
109 | 109 | ||
110 | void PMainWindow::slotRotateToggled(bool how) | 110 | void PMainWindow::slotRotateToggled(bool how) |
111 | { | 111 | { |
112 | if (autoSave) { | 112 | if (autoSave) { |
113 | m_cfg->writeEntry("autorotate",how); | 113 | m_cfg->writeEntry("autorotate",how); |
114 | } | 114 | } |
115 | if (m_disp) { | 115 | if (m_disp) { |
116 | m_disp->setAutoScaleRotate(!m_aUnscaled->isOn(),how); | 116 | m_disp->setAutoScaleRotate(!m_aUnscaled->isOn(),how); |
117 | } | 117 | } |
118 | } | 118 | } |
119 | 119 | ||
120 | void PMainWindow::slotScaleToggled(bool how) | 120 | void PMainWindow::slotScaleToggled(bool how) |
121 | { | 121 | { |
122 | if (autoSave) { | 122 | if (autoSave) { |
123 | m_cfg->writeEntry("unscaled",how); | 123 | m_cfg->writeEntry("unscaled",how); |
124 | } | 124 | } |
125 | odebug << "Unscaled: " << m_aUnscaled->isOn() << oendl; | 125 | odebug << "Unscaled: " << m_aUnscaled->isOn() << oendl; |
126 | odebug << "How: " << how << oendl; | 126 | odebug << "How: " << how << oendl; |
127 | if (how) { | 127 | if (how) { |
128 | m_aAutoRotate->setOn(false); | 128 | m_aAutoRotate->setOn(false); |
129 | } | 129 | } |
130 | if (m_disp) { | 130 | if (m_disp) { |
131 | m_disp->setAutoScaleRotate(!m_aUnscaled->isOn(),m_aAutoRotate->isOn()); | 131 | m_disp->setAutoScaleRotate(!m_aUnscaled->isOn(),m_aAutoRotate->isOn()); |
132 | } | 132 | } |
133 | m_aAutoRotate->setEnabled(!how); | 133 | m_aAutoRotate->setEnabled(!how); |
134 | odebug << "Autorotate: " << m_aAutoRotate->isOn() << oendl; | 134 | odebug << "Autorotate: " << m_aAutoRotate->isOn() << oendl; |
135 | } | 135 | } |
136 | 136 | ||
137 | void PMainWindow::slotConfig() { | 137 | void PMainWindow::slotConfig() { |
138 | /* | 138 | /* |
139 | * have a tab with the possible views | 139 | * have a tab with the possible views |
140 | * a tab for globals image cache size.. scaled loading | 140 | * a tab for globals image cache size.. scaled loading |
141 | * and one tab for the KeyConfigs | 141 | * and one tab for the KeyConfigs |