summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/profile.cpp
authorzecke <zecke>2002-10-08 16:37:37 (UTC)
committer zecke <zecke>2002-10-08 16:37:37 (UTC)
commit76fb8a57bf9fbae3a7073c8b0be1216f34adf99c (patch) (unidiff)
tree3f486d66ce474039b1a0fc4ade770e6e8a7c32b3 /noncore/apps/opie-console/profile.cpp
parentfaeb94a4000dc539577af465107b5d10903f92d6 (diff)
downloadopie-76fb8a57bf9fbae3a7073c8b0be1216f34adf99c.zip
opie-76fb8a57bf9fbae3a7073c8b0be1216f34adf99c.tar.gz
opie-76fb8a57bf9fbae3a7073c8b0be1216f34adf99c.tar.bz2
SzModem:
Make it compile remove = 0 from sendFile Add a Type to Sz so it could cover SX,SY too MetaFactory: take QCString name QString uiString so Carsten will be able to translate and users can switch Language without losing profiles Default It's aware of all Default/BuiltIn Plugins and adds them to the factory Common typedef bool BOOL TT is not using bool because it wasn't available at that time they use uint : 1... maybe we should change UINT_8 to Q_UINT8... MainWindow: give the factory to the config widget use Default IOLayer reload should take Profile not Config ConfigDialog: make use of Factory and do not do new MetaFactory.. i should make the c'tor private and add MainWindow as friend ProfileEditorDialog: Huge clean ups to the architecture. I still need to convert the widgets. Use the factory right
Diffstat (limited to 'noncore/apps/opie-console/profile.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-console/profile.cpp21
1 files changed, 14 insertions, 7 deletions
diff --git a/noncore/apps/opie-console/profile.cpp b/noncore/apps/opie-console/profile.cpp
index c8f5eb0..1a94619 100644
--- a/noncore/apps/opie-console/profile.cpp
+++ b/noncore/apps/opie-console/profile.cpp
@@ -4,14 +4,14 @@ Profile::Profile() {
4 4
5} 5}
6Profile::Profile( const QString& name, 6Profile::Profile( const QString& name,
7 const QString& iolayerName, 7 const QCString& iolayerName,
8 const QCString& termName,
8 int background, 9 int background,
9 int foreground, 10 int foreground,
10 int terminal ) 11 int terminal )
11 : m_name( name ), m_ioLayer( iolayerName ), m_back( background ), 12 : m_name( name ), m_ioLayer( iolayerName ), m_term( termName),
12 m_fore( foreground ), m_terminal( terminal ) 13 m_back( background ), m_fore( foreground ), m_terminal( terminal )
13{ 14{}
14}
15Profile::Profile( const Profile& prof ) 15Profile::Profile( const Profile& prof )
16{ 16{
17 (*this) = prof; 17 (*this) = prof;
@@ -28,6 +28,7 @@ Profile &Profile::operator=( const Profile& prof ) {
28 m_fore = prof.m_fore; 28 m_fore = prof.m_fore;
29 m_terminal = prof.m_terminal; 29 m_terminal = prof.m_terminal;
30 m_conf = prof.m_conf; 30 m_conf = prof.m_conf;
31 m_term = prof.m_term;
31 32
32 return *this; 33 return *this;
33} 34}
@@ -39,9 +40,12 @@ QMap<QString, QString> Profile::conf()const {
39QString Profile::name()const { 40QString Profile::name()const {
40 return m_name; 41 return m_name;
41} 42}
42QString Profile::ioLayerName()const { 43QCString Profile::ioLayerName()const {
43 return m_ioLayer; 44 return m_ioLayer;
44} 45}
46QCString Profile::terminalName( )const {
47 return m_term;
48}
45int Profile::foreground()const { 49int Profile::foreground()const {
46 return m_fore; 50 return m_fore;
47} 51}
@@ -54,9 +58,12 @@ int Profile::terminal()const {
54void Profile::setName( const QString& str ) { 58void Profile::setName( const QString& str ) {
55 m_name = str; 59 m_name = str;
56} 60}
57void Profile::setIOLayer( const QString& name ) { 61void Profile::setIOLayer( const QCString& name ) {
58 m_ioLayer = name; 62 m_ioLayer = name;
59} 63}
64void Profile::setTerminalName( const QCString& str ) {
65 m_term = str;
66}
60void Profile::setBackground( int back ) { 67void Profile::setBackground( int back ) {
61 m_back = back; 68 m_back = back;
62} 69}