summaryrefslogtreecommitdiff
path: root/noncore/settings
authorsandman <sandman>2002-12-22 16:37:07 (UTC)
committer sandman <sandman>2002-12-22 16:37:07 (UTC)
commit150e066a847e8e10848cfd10a635b9cec57347b3 (patch) (side-by-side diff)
tree8e16dec1950321db67455b0011b79fcae0469c68 /noncore/settings
parent9ee5295d934e0876dfe0b7e0a4ee05012c491f91 (diff)
downloadopie-150e066a847e8e10848cfd10a635b9cec57347b3.zip
opie-150e066a847e8e10848cfd10a635b9cec57347b3.tar.gz
opie-150e066a847e8e10848cfd10a635b9cec57347b3.tar.bz2
Fixed some window captions to match the corresponding launcher icons
Diffstat (limited to 'noncore/settings') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/appearance2/appearance.cpp2
-rw-r--r--noncore/settings/language/languagesettingsbase.ui2
-rw-r--r--noncore/settings/mediummount/mainwindow.cc2
3 files changed, 4 insertions, 2 deletions
diff --git a/noncore/settings/appearance2/appearance.cpp b/noncore/settings/appearance2/appearance.cpp
index e9e0ad9..2b35119 100644
--- a/noncore/settings/appearance2/appearance.cpp
+++ b/noncore/settings/appearance2/appearance.cpp
@@ -386,49 +386,49 @@ QWidget *Appearance::createAdvancedTab ( QWidget *parent, Config &cfg )
m_tabstyle_top = new QRadioButton( tr( "Top" ), tab, "tabpostop" );
btngrp-> insert ( m_tabstyle_top );
gridLayout-> addWidget( m_tabstyle_top, 1, 1 );
QWhatsThis::add( m_tabstyle_top, tr( "Click here so that tabs appear at the top of the window." ) );
m_tabstyle_bottom = new QRadioButton( tr( "Bottom" ), tab, "tabposbottom" );
btngrp-> insert ( m_tabstyle_bottom );
gridLayout-> addWidget( m_tabstyle_bottom, 1, 2 );
QWhatsThis::add( m_tabstyle_bottom, tr( "Click here so that tabs appear at the bottom of the window." ) );
m_tabstyle_top-> setChecked ( tabtop );
m_tabstyle_bottom-> setChecked ( !tabtop );
m_original_tabstyle = style;
m_original_tabpos = tabtop;
return tab;
}
Appearance::Appearance( QWidget* parent, const char* name, WFlags )
: QDialog ( parent, name, true, WStyle_ContextHelp )
{
- setCaption( tr( "Appearance" ) );
+ setCaption( tr( "Appearance Settings" ) );
Config config( "qpe" );
config.setGroup( "Appearance" );
QVBoxLayout *top = new QVBoxLayout ( this, 3, 3 );
m_sample = new SampleWindow ( this );
m_sample-> setDecoration ( new DefaultWindowDecoration ( ));
QWhatsThis::add( m_sample, tr( "This is a preview window. Look here to see your new appearance as options are changed." ) );
OTabWidget* tw = new OTabWidget ( this, "tabwidget", OTabWidget::Global, OTabWidget::Bottom );
QWidget *styletab;
m_color_list = 0;
tw-> addTab ( styletab = createStyleTab ( tw, config ), "appearance/style", tr( "Style" ));
tw-> addTab ( createFontTab ( tw, config ), "appearance/font", tr( "Font" ));
tw-> addTab ( createColorTab ( tw, config ), "appearance/color", tr( "Colors" ) );
tw-> addTab ( createDecoTab ( tw, config ), "appearance/deco", tr( "Windows" ) );
tw-> addTab ( m_advtab = createAdvancedTab ( tw, config ), "appearance/advanced", tr( "Advanced" ) );
top-> addWidget ( tw, 10 );
top-> addWidget ( m_sample, 1 );
diff --git a/noncore/settings/language/languagesettingsbase.ui b/noncore/settings/language/languagesettingsbase.ui
index 62bdafa..ae317e4 100644
--- a/noncore/settings/language/languagesettingsbase.ui
+++ b/noncore/settings/language/languagesettingsbase.ui
@@ -1,44 +1,44 @@
<!DOCTYPE UI><UI>
<class>LanguageSettingsBase</class>
<widget>
<class>QDialog</class>
<property stdset="1">
<name>name</name>
<cstring>LanguageSettingsBase</cstring>
</property>
<property stdset="1">
<name>geometry</name>
<rect>
<x>0</x>
<y>0</y>
<width>369</width>
<height>492</height>
</rect>
</property>
<property stdset="1">
<name>caption</name>
- <string>Language</string>
+ <string>Language Settings</string>
</property>
<vbox>
<property stdset="1">
<name>margin</name>
<number>11</number>
</property>
<property stdset="1">
<name>spacing</name>
<number>6</number>
</property>
<widget>
<class>QLabel</class>
<property stdset="1">
<name>name</name>
<cstring>TextLabel1</cstring>
</property>
<property stdset="1">
<name>text</name>
<string>Select language</string>
</property>
</widget>
<widget>
<class>QListBox</class>
<property stdset="1">
diff --git a/noncore/settings/mediummount/mainwindow.cc b/noncore/settings/mediummount/mainwindow.cc
index cf8ad6c..6d9bb80 100644
--- a/noncore/settings/mediummount/mainwindow.cc
+++ b/noncore/settings/mediummount/mainwindow.cc
@@ -1,43 +1,45 @@
#include <qtabwidget.h>
#include <qlayout.h>
#include <qpe/storage.h>
#include "mediumwidget.h"
#include "mediumglobal.h"
#include "mainwindow.h"
using namespace MediumMountSetting;
MainWindow::MainWindow( QWidget *parent, const char *name, WFlags )
: QMainWindow( parent, name, WStyle_ContextHelp )
{
+ setCaption ( tr( "Medium Mount Settings" ));
+
// m_lay = new QVBoxLayout( this );
m_tab = new QTabWidget( this );
setCentralWidget( m_tab );
init();
}
MainWindow::~MainWindow()
{
}
void MainWindow::init()
{
m_global = new MediumGlobalWidget( m_tab, "test drive" );
m_tab->addTab( m_global, tr("Global") );
StorageInfo storage;
const QList<FileSystem> &fs = storage.fileSystems();
QListIterator<FileSystem> it( fs );
MediumMountWidget *wid;
for( ; it.current(); ++it ){
if( (*it)->isRemovable() ){
wid = new MediumMountWidget((*it)->path(), QPixmap(), m_tab );
m_mediums.append( wid );
m_tab->addTab( wid, (*it)->name() );