author | ulf69 <ulf69> | 2004-07-15 05:06:06 (UTC) |
---|---|---|
committer | ulf69 <ulf69> | 2004-07-15 05:06:06 (UTC) |
commit | 59f727076930aada485db6531d4084f2bfe0b928 (patch) (unidiff) | |
tree | d68ab61d9f78759d36d8ccb2cdd3312987bf7917 /kaddressbook | |
parent | 2ada2bfd67b5488115268e6667e55a9b4b297fa2 (diff) | |
download | kdepimpi-59f727076930aada485db6531d4084f2bfe0b928.zip kdepimpi-59f727076930aada485db6531d4084f2bfe0b928.tar.gz kdepimpi-59f727076930aada485db6531d4084f2bfe0b928.tar.bz2 |
ask for readwrite resources if the user wants them to reload in the case of an
external change.
-rw-r--r-- | kaddressbook/details/detailsviewcontainer.cpp | 3 | ||||
-rw-r--r-- | kaddressbook/kabcore.cpp | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/kaddressbook/details/detailsviewcontainer.cpp b/kaddressbook/details/detailsviewcontainer.cpp index 8f566cf..a42499f 100644 --- a/kaddressbook/details/detailsviewcontainer.cpp +++ b/kaddressbook/details/detailsviewcontainer.cpp | |||
@@ -41,131 +41,132 @@ | |||
41 | 41 | ||
42 | 42 | ||
43 | #include "detailsviewcontainer.h" | 43 | #include "detailsviewcontainer.h" |
44 | 44 | ||
45 | ViewContainer::ViewContainer( QWidget *parent, const char* name ) | 45 | ViewContainer::ViewContainer( QWidget *parent, const char* name ) |
46 | : QWidget( parent, name ), mCurrentLook( 0 ) | 46 | : QWidget( parent, name ), mCurrentLook( 0 ) |
47 | { | 47 | { |
48 | QBoxLayout *topLayout = new QVBoxLayout( this ); | 48 | QBoxLayout *topLayout = new QVBoxLayout( this ); |
49 | //topLayout->setMargin( KDialog::marginHint() ); | 49 | //topLayout->setMargin( KDialog::marginHint() ); |
50 | //topLayout->setSpacing( KDialog::spacingHint() ); | 50 | //topLayout->setSpacing( KDialog::spacingHint() ); |
51 | topLayout->setMargin( 0 ); | 51 | topLayout->setMargin( 0 ); |
52 | topLayout->setSpacing( 0 ); | 52 | topLayout->setSpacing( 0 ); |
53 | 53 | ||
54 | QBoxLayout *styleLayout = new QHBoxLayout( topLayout ); | 54 | QBoxLayout *styleLayout = new QHBoxLayout( topLayout ); |
55 | 55 | ||
56 | QLabel *label = new QLabel( i18n("Style:"), this ); | 56 | QLabel *label = new QLabel( i18n("Style:"), this ); |
57 | styleLayout->addWidget( label ); | 57 | styleLayout->addWidget( label ); |
58 | 58 | ||
59 | mStyleCombo = new QComboBox( this ); | 59 | mStyleCombo = new QComboBox( this ); |
60 | styleLayout->addWidget( mStyleCombo ); | 60 | styleLayout->addWidget( mStyleCombo ); |
61 | 61 | ||
62 | QFrame *frameRuler = new QFrame( this ); | 62 | QFrame *frameRuler = new QFrame( this ); |
63 | //US frameRuler->setFrameShape( QFrame::HLine ); | 63 | //US frameRuler->setFrameShape( QFrame::HLine ); |
64 | //US frameRuler->setFrameShadow( QFrame::Sunken ); | 64 | //US frameRuler->setFrameShadow( QFrame::Sunken ); |
65 | //US topLayout->addWidget( frameRuler ); | 65 | //US topLayout->addWidget( frameRuler ); |
66 | 66 | ||
67 | mDetailsStack = new QWidgetStack( this ); | 67 | mDetailsStack = new QWidgetStack( this ); |
68 | topLayout->addWidget( mDetailsStack, 1 ); | 68 | topLayout->addWidget( mDetailsStack, 1 ); |
69 | 69 | ||
70 | registerLooks(); | 70 | registerLooks(); |
71 | 71 | ||
72 | #if 1 | 72 | #if 1 |
73 | // Hide detailed view selection combo box, because we currently have | 73 | // Hide detailed view selection combo box, because we currently have |
74 | // only one. Reenable it when there are more detailed views. | 74 | // only one. Reenable it when there are more detailed views. |
75 | label->hide(); | 75 | label->hide(); |
76 | mStyleCombo->hide(); | 76 | mStyleCombo->hide(); |
77 | frameRuler->hide(); | 77 | frameRuler->hide(); |
78 | #endif | 78 | #endif |
79 | } | 79 | } |
80 | 80 | ||
81 | KABBasicLook *ViewContainer::currentLook() | 81 | KABBasicLook *ViewContainer::currentLook() |
82 | { | 82 | { |
83 | return mCurrentLook; | 83 | return mCurrentLook; |
84 | } | 84 | } |
85 | 85 | ||
86 | void ViewContainer::registerLooks() | 86 | void ViewContainer::registerLooks() |
87 | { | 87 | { |
88 | mLookFactories.append( new KABHtmlViewFactory( mDetailsStack ) ); | 88 | mLookFactories.append( new KABHtmlViewFactory( mDetailsStack ) ); |
89 | // mLookFactories.append( new KABDetailedViewFactory( mDetailsStack ) ); | 89 | // mLookFactories.append( new KABDetailedViewFactory( mDetailsStack ) ); |
90 | mStyleCombo->clear(); | 90 | mStyleCombo->clear(); |
91 | 91 | ||
92 | for ( uint i = 0; i < mLookFactories.count(); ++i ) | 92 | for ( uint i = 0; i < mLookFactories.count(); ++i ) |
93 | mStyleCombo->insertItem( mLookFactories.at( i )->description() ); | 93 | mStyleCombo->insertItem( mLookFactories.at( i )->description() ); |
94 | 94 | ||
95 | if ( !mLookFactories.isEmpty() ) | 95 | if ( !mLookFactories.isEmpty() ) |
96 | slotStyleSelected( 0 ); | 96 | slotStyleSelected( 0 ); |
97 | } | 97 | } |
98 | 98 | ||
99 | void ViewContainer::slotStyleSelected( int index ) | 99 | void ViewContainer::slotStyleSelected( int index ) |
100 | { | 100 | { |
101 | #ifndef KAB_EMBEDDED | 101 | #ifndef KAB_EMBEDDED |
102 | KConfig *config = kapp->config(); | 102 | KConfig *config = kapp->config(); |
103 | #else //KAB_EMBEDDED | 103 | #else //KAB_EMBEDDED |
104 | //US I hope I got the same config object as above expected. | 104 | //US I hope I got the same config object as above expected. |
105 | KConfig *config = KABPrefs::instance()->getConfig(); | 105 | KConfig *config = KABPrefs::instance()->getConfig(); |
106 | #endif //KAB_EMBEDDED | 106 | #endif //KAB_EMBEDDED |
107 | KABC::Addressee addr; | 107 | KABC::Addressee addr; |
108 | 108 | ||
109 | if ( index >= 0 && index < mStyleCombo->count() ) { | 109 | if ( index >= 0 && index < mStyleCombo->count() ) { |
110 | if ( mCurrentLook != 0 ) { | 110 | if ( mCurrentLook != 0 ) { |
111 | mCurrentLook->saveSettings( config ); | 111 | mCurrentLook->saveSettings( config ); |
112 | addr = mCurrentLook->addressee(); | 112 | addr = mCurrentLook->addressee(); |
113 | 113 | ||
114 | delete mCurrentLook; | 114 | delete mCurrentLook; |
115 | mCurrentLook = 0; | 115 | mCurrentLook = 0; |
116 | } | 116 | } |
117 | 117 | ||
118 | KABLookFactory *factory = mLookFactories.at( index ); | 118 | KABLookFactory *factory = mLookFactories.at( index ); |
119 | kdDebug(5720) << "ViewContainer::slotStyleSelected: " | 119 | kdDebug(5720) << "ViewContainer::slotStyleSelected: " |
120 | << "creating look " | 120 | << "creating look " |
121 | << factory->description() << endl; | 121 | << factory->description() << endl; |
122 | 122 | ||
123 | mCurrentLook = factory->create(); | 123 | mCurrentLook = factory->create(); |
124 | mDetailsStack->raiseWidget( mCurrentLook ); | 124 | mDetailsStack->raiseWidget( mCurrentLook ); |
125 | 125 | ||
126 | connect( mCurrentLook, SIGNAL( sendEmail( const QString& ) ), this, | 126 | connect( mCurrentLook, SIGNAL( sendEmail( const QString& ) ), this, |
127 | SIGNAL( sendEmail( const QString& ) ) ); | 127 | SIGNAL( sendEmail( const QString& ) ) ); |
128 | connect( mCurrentLook, SIGNAL( browse( const QString& ) ), this, | 128 | connect( mCurrentLook, SIGNAL( browse( const QString& ) ), this, |
129 | SIGNAL( browse( const QString& ) ) ); | 129 | SIGNAL( browse( const QString& ) ) ); |
130 | } | 130 | } |
131 | 131 | ||
132 | mCurrentLook->restoreSettings( config ); | 132 | mCurrentLook->restoreSettings( config ); |
133 | mCurrentLook->setAddressee( addr ); | 133 | mCurrentLook->setAddressee( addr ); |
134 | } | 134 | } |
135 | void ViewContainer::refreshView() | 135 | void ViewContainer::refreshView() |
136 | { | 136 | { |
137 | if ( mCurrentLook ) | 137 | if ( mCurrentLook ) { |
138 | mCurrentLook->setAddressee( mCurrentAddressee ); | 138 | mCurrentLook->setAddressee( mCurrentAddressee ); |
139 | } | ||
139 | } | 140 | } |
140 | 141 | ||
141 | void ViewContainer::setAddressee( const KABC::Addressee& addressee ) | 142 | void ViewContainer::setAddressee( const KABC::Addressee& addressee ) |
142 | { | 143 | { |
143 | if ( mCurrentLook != 0 ) { | 144 | if ( mCurrentLook != 0 ) { |
144 | if ( addressee == mCurrentAddressee ) | 145 | if ( addressee == mCurrentAddressee ) |
145 | return; | 146 | return; |
146 | else { | 147 | else { |
147 | mCurrentAddressee = addressee; | 148 | mCurrentAddressee = addressee; |
148 | mCurrentLook->setAddressee( mCurrentAddressee ); | 149 | mCurrentLook->setAddressee( mCurrentAddressee ); |
149 | } | 150 | } |
150 | } | 151 | } |
151 | } | 152 | } |
152 | 153 | ||
153 | KABC::Addressee ViewContainer::addressee() | 154 | KABC::Addressee ViewContainer::addressee() |
154 | { | 155 | { |
155 | static KABC::Addressee empty; // do not use! | 156 | static KABC::Addressee empty; // do not use! |
156 | 157 | ||
157 | if ( !mCurrentLook ) | 158 | if ( !mCurrentLook ) |
158 | return empty; | 159 | return empty; |
159 | else | 160 | else |
160 | return mCurrentLook->addressee(); | 161 | return mCurrentLook->addressee(); |
161 | } | 162 | } |
162 | 163 | ||
163 | void ViewContainer::setReadOnly( bool state ) | 164 | void ViewContainer::setReadOnly( bool state ) |
164 | { | 165 | { |
165 | if ( mCurrentLook ) | 166 | if ( mCurrentLook ) |
166 | mCurrentLook->setReadOnly( state ); | 167 | mCurrentLook->setReadOnly( state ); |
167 | } | 168 | } |
168 | 169 | ||
169 | #ifndef KAB_EMBEDDED | 170 | #ifndef KAB_EMBEDDED |
170 | #include "detailsviewcontainer.moc" | 171 | #include "detailsviewcontainer.moc" |
171 | #endif //KAB_EMBEDDED | 172 | #endif //KAB_EMBEDDED |
diff --git a/kaddressbook/kabcore.cpp b/kaddressbook/kabcore.cpp index 2b07541..a7ca0ce 100644 --- a/kaddressbook/kabcore.cpp +++ b/kaddressbook/kabcore.cpp | |||
@@ -1031,192 +1031,193 @@ QString KABCore::getNameByPhone( const QString &phone ) | |||
1031 | 1031 | ||
1032 | } | 1032 | } |
1033 | 1033 | ||
1034 | void KABCore::openConfigDialog() | 1034 | void KABCore::openConfigDialog() |
1035 | { | 1035 | { |
1036 | KCMultiDialog* ConfigureDialog = new KCMultiDialog( "PIM", this ,"kabconfigdialog", true ); | 1036 | KCMultiDialog* ConfigureDialog = new KCMultiDialog( "PIM", this ,"kabconfigdialog", true ); |
1037 | KCMKabConfig* kabcfg = new KCMKabConfig( ConfigureDialog->getNewVBoxPage(i18n( "Addressbook")) , "KCMKabConfig" ); | 1037 | KCMKabConfig* kabcfg = new KCMKabConfig( ConfigureDialog->getNewVBoxPage(i18n( "Addressbook")) , "KCMKabConfig" ); |
1038 | ConfigureDialog->addModule(kabcfg ); | 1038 | ConfigureDialog->addModule(kabcfg ); |
1039 | connect( ConfigureDialog, SIGNAL( applyClicked() ), | 1039 | connect( ConfigureDialog, SIGNAL( applyClicked() ), |
1040 | this, SLOT( configurationChanged() ) ); | 1040 | this, SLOT( configurationChanged() ) ); |
1041 | connect( ConfigureDialog, SIGNAL( okClicked() ), | 1041 | connect( ConfigureDialog, SIGNAL( okClicked() ), |
1042 | this, SLOT( configurationChanged() ) ); | 1042 | this, SLOT( configurationChanged() ) ); |
1043 | saveSettings(); | 1043 | saveSettings(); |
1044 | ConfigureDialog->showMaximized(); | 1044 | ConfigureDialog->showMaximized(); |
1045 | if ( ConfigureDialog->exec() ) | 1045 | if ( ConfigureDialog->exec() ) |
1046 | KMessageBox::information( this, i18n("If you configured \nExtensions,\nplease restart!\n") ); | 1046 | KMessageBox::information( this, i18n("If you configured \nExtensions,\nplease restart!\n") ); |
1047 | delete ConfigureDialog; | 1047 | delete ConfigureDialog; |
1048 | } | 1048 | } |
1049 | 1049 | ||
1050 | void KABCore::openLDAPDialog() | 1050 | void KABCore::openLDAPDialog() |
1051 | { | 1051 | { |
1052 | #ifndef KAB_EMBEDDED | 1052 | #ifndef KAB_EMBEDDED |
1053 | if ( !mLdapSearchDialog ) { | 1053 | if ( !mLdapSearchDialog ) { |
1054 | mLdapSearchDialog = new LDAPSearchDialog( mAddressBook, this ); | 1054 | mLdapSearchDialog = new LDAPSearchDialog( mAddressBook, this ); |
1055 | connect( mLdapSearchDialog, SIGNAL( addresseesAdded() ), mViewManager, | 1055 | connect( mLdapSearchDialog, SIGNAL( addresseesAdded() ), mViewManager, |
1056 | SLOT( refreshView() ) ); | 1056 | SLOT( refreshView() ) ); |
1057 | connect( mLdapSearchDialog, SIGNAL( addresseesAdded() ), this, | 1057 | connect( mLdapSearchDialog, SIGNAL( addresseesAdded() ), this, |
1058 | SLOT( setModified() ) ); | 1058 | SLOT( setModified() ) ); |
1059 | } else | 1059 | } else |
1060 | mLdapSearchDialog->restoreSettings(); | 1060 | mLdapSearchDialog->restoreSettings(); |
1061 | 1061 | ||
1062 | if ( mLdapSearchDialog->isOK() ) | 1062 | if ( mLdapSearchDialog->isOK() ) |
1063 | mLdapSearchDialog->exec(); | 1063 | mLdapSearchDialog->exec(); |
1064 | #else //KAB_EMBEDDED | 1064 | #else //KAB_EMBEDDED |
1065 | qDebug("KABCore::openLDAPDialog() finsih method"); | 1065 | qDebug("KABCore::openLDAPDialog() finsih method"); |
1066 | #endif //KAB_EMBEDDED | 1066 | #endif //KAB_EMBEDDED |
1067 | } | 1067 | } |
1068 | 1068 | ||
1069 | void KABCore::print() | 1069 | void KABCore::print() |
1070 | { | 1070 | { |
1071 | #ifndef KAB_EMBEDDED | 1071 | #ifndef KAB_EMBEDDED |
1072 | KPrinter printer; | 1072 | KPrinter printer; |
1073 | if ( !printer.setup( this ) ) | 1073 | if ( !printer.setup( this ) ) |
1074 | return; | 1074 | return; |
1075 | 1075 | ||
1076 | KABPrinting::PrintingWizard wizard( &printer, mAddressBook, | 1076 | KABPrinting::PrintingWizard wizard( &printer, mAddressBook, |
1077 | mViewManager->selectedUids(), this ); | 1077 | mViewManager->selectedUids(), this ); |
1078 | 1078 | ||
1079 | wizard.exec(); | 1079 | wizard.exec(); |
1080 | #else //KAB_EMBEDDED | 1080 | #else //KAB_EMBEDDED |
1081 | qDebug("KABCore::print() finsih method"); | 1081 | qDebug("KABCore::print() finsih method"); |
1082 | #endif //KAB_EMBEDDED | 1082 | #endif //KAB_EMBEDDED |
1083 | 1083 | ||
1084 | } | 1084 | } |
1085 | 1085 | ||
1086 | 1086 | ||
1087 | void KABCore::addGUIClient( KXMLGUIClient *client ) | 1087 | void KABCore::addGUIClient( KXMLGUIClient *client ) |
1088 | { | 1088 | { |
1089 | if ( mGUIClient ) | 1089 | if ( mGUIClient ) |
1090 | mGUIClient->insertChildClient( client ); | 1090 | mGUIClient->insertChildClient( client ); |
1091 | else | 1091 | else |
1092 | KMessageBox::error( this, "no KXMLGUICLient"); | 1092 | KMessageBox::error( this, "no KXMLGUICLient"); |
1093 | } | 1093 | } |
1094 | 1094 | ||
1095 | 1095 | ||
1096 | void KABCore::configurationChanged() | 1096 | void KABCore::configurationChanged() |
1097 | { | 1097 | { |
1098 | mExtensionManager->reconfigure(); | 1098 | mExtensionManager->reconfigure(); |
1099 | } | 1099 | } |
1100 | 1100 | ||
1101 | void KABCore::addressBookChanged() | 1101 | void KABCore::addressBookChanged() |
1102 | { | 1102 | { |
1103 | /*US | 1103 | /*US |
1104 | QDictIterator<AddresseeEditorDialog> it( mEditorDict ); | 1104 | QDictIterator<AddresseeEditorDialog> it( mEditorDict ); |
1105 | while ( it.current() ) { | 1105 | while ( it.current() ) { |
1106 | if ( it.current()->dirty() ) { | 1106 | if ( it.current()->dirty() ) { |
1107 | QString text = i18n( "Data has been changed externally. Unsaved " | 1107 | QString text = i18n( "Data has been changed externally. Unsaved " |
1108 | "changes will be lost." ); | 1108 | "changes will be lost." ); |
1109 | KMessageBox::information( this, text ); | 1109 | KMessageBox::information( this, text ); |
1110 | } | 1110 | } |
1111 | it.current()->setAddressee( mAddressBook->findByUid( it.currentKey() ) ); | 1111 | it.current()->setAddressee( mAddressBook->findByUid( it.currentKey() ) ); |
1112 | ++it; | 1112 | ++it; |
1113 | } | 1113 | } |
1114 | */ | 1114 | */ |
1115 | if (mEditorDialog) | 1115 | if (mEditorDialog) |
1116 | { | 1116 | { |
1117 | if (mEditorDialog->dirty()) | 1117 | if (mEditorDialog->dirty()) |
1118 | { | 1118 | { |
1119 | QString text = i18n( "Data has been changed externally. Unsaved " | 1119 | QString text = i18n( "Data has been changed externally. Unsaved " |
1120 | "changes will be lost." ); | 1120 | "changes will be lost." ); |
1121 | KMessageBox::information( this, text ); | 1121 | KMessageBox::information( this, text ); |
1122 | } | 1122 | } |
1123 | QString currentuid = mEditorDialog->addressee().uid(); | 1123 | QString currentuid = mEditorDialog->addressee().uid(); |
1124 | mEditorDialog->setAddressee( mAddressBook->findByUid( currentuid ) ); | 1124 | mEditorDialog->setAddressee( mAddressBook->findByUid( currentuid ) ); |
1125 | } | 1125 | } |
1126 | mViewManager->refreshView(); | 1126 | mViewManager->refreshView(); |
1127 | // mDetails->refreshView(); | ||
1127 | 1128 | ||
1128 | 1129 | ||
1129 | } | 1130 | } |
1130 | 1131 | ||
1131 | AddresseeEditorDialog *KABCore::createAddresseeEditorDialog( QWidget *parent, | 1132 | AddresseeEditorDialog *KABCore::createAddresseeEditorDialog( QWidget *parent, |
1132 | const char *name ) | 1133 | const char *name ) |
1133 | { | 1134 | { |
1134 | 1135 | ||
1135 | if ( mEditorDialog == 0 ) { | 1136 | if ( mEditorDialog == 0 ) { |
1136 | mEditorDialog = new AddresseeEditorDialog( this, parent, | 1137 | mEditorDialog = new AddresseeEditorDialog( this, parent, |
1137 | name ? name : "editorDialog" ); | 1138 | name ? name : "editorDialog" ); |
1138 | 1139 | ||
1139 | 1140 | ||
1140 | connect( mEditorDialog, SIGNAL( contactModified( const KABC::Addressee& ) ), | 1141 | connect( mEditorDialog, SIGNAL( contactModified( const KABC::Addressee& ) ), |
1141 | SLOT( contactModified( const KABC::Addressee& ) ) ); | 1142 | SLOT( contactModified( const KABC::Addressee& ) ) ); |
1142 | //connect( mEditorDialog, SIGNAL( editorDestroyed( const QString& ) ), | 1143 | //connect( mEditorDialog, SIGNAL( editorDestroyed( const QString& ) ), |
1143 | // SLOT( slotEditorDestroyed( const QString& ) ) ); | 1144 | // SLOT( slotEditorDestroyed( const QString& ) ) ); |
1144 | } | 1145 | } |
1145 | 1146 | ||
1146 | return mEditorDialog; | 1147 | return mEditorDialog; |
1147 | } | 1148 | } |
1148 | 1149 | ||
1149 | void KABCore::slotEditorDestroyed( const QString &uid ) | 1150 | void KABCore::slotEditorDestroyed( const QString &uid ) |
1150 | { | 1151 | { |
1151 | //mEditorDict.remove( uid ); | 1152 | //mEditorDict.remove( uid ); |
1152 | } | 1153 | } |
1153 | 1154 | ||
1154 | void KABCore::initGUI() | 1155 | void KABCore::initGUI() |
1155 | { | 1156 | { |
1156 | #ifndef KAB_EMBEDDED | 1157 | #ifndef KAB_EMBEDDED |
1157 | QHBoxLayout *topLayout = new QHBoxLayout( this ); | 1158 | QHBoxLayout *topLayout = new QHBoxLayout( this ); |
1158 | topLayout->setSpacing( KDialogBase::spacingHint() ); | 1159 | topLayout->setSpacing( KDialogBase::spacingHint() ); |
1159 | 1160 | ||
1160 | mExtensionBarSplitter = new QSplitter( this ); | 1161 | mExtensionBarSplitter = new QSplitter( this ); |
1161 | mExtensionBarSplitter->setOrientation( Qt::Vertical ); | 1162 | mExtensionBarSplitter->setOrientation( Qt::Vertical ); |
1162 | 1163 | ||
1163 | mDetailsSplitter = new QSplitter( mExtensionBarSplitter ); | 1164 | mDetailsSplitter = new QSplitter( mExtensionBarSplitter ); |
1164 | 1165 | ||
1165 | QVBox *viewSpace = new QVBox( mDetailsSplitter ); | 1166 | QVBox *viewSpace = new QVBox( mDetailsSplitter ); |
1166 | mIncSearchWidget = new IncSearchWidget( viewSpace ); | 1167 | mIncSearchWidget = new IncSearchWidget( viewSpace ); |
1167 | connect( mIncSearchWidget, SIGNAL( doSearch( const QString& ) ), | 1168 | connect( mIncSearchWidget, SIGNAL( doSearch( const QString& ) ), |
1168 | SLOT( incrementalSearch( const QString& ) ) ); | 1169 | SLOT( incrementalSearch( const QString& ) ) ); |
1169 | 1170 | ||
1170 | mViewManager = new ViewManager( this, viewSpace ); | 1171 | mViewManager = new ViewManager( this, viewSpace ); |
1171 | viewSpace->setStretchFactor( mViewManager, 1 ); | 1172 | viewSpace->setStretchFactor( mViewManager, 1 ); |
1172 | 1173 | ||
1173 | mDetails = new ViewContainer( mDetailsSplitter ); | 1174 | mDetails = new ViewContainer( mDetailsSplitter ); |
1174 | 1175 | ||
1175 | mJumpButtonBar = new JumpButtonBar( this, this ); | 1176 | mJumpButtonBar = new JumpButtonBar( this, this ); |
1176 | 1177 | ||
1177 | mExtensionManager = new ExtensionManager( this, mExtensionBarSplitter ); | 1178 | mExtensionManager = new ExtensionManager( this, mExtensionBarSplitter ); |
1178 | 1179 | ||
1179 | topLayout->addWidget( mExtensionBarSplitter ); | 1180 | topLayout->addWidget( mExtensionBarSplitter ); |
1180 | topLayout->setStretchFactor( mExtensionBarSplitter, 100 ); | 1181 | topLayout->setStretchFactor( mExtensionBarSplitter, 100 ); |
1181 | topLayout->addWidget( mJumpButtonBar ); | 1182 | topLayout->addWidget( mJumpButtonBar ); |
1182 | topLayout->setStretchFactor( mJumpButtonBar, 1 ); | 1183 | topLayout->setStretchFactor( mJumpButtonBar, 1 ); |
1183 | 1184 | ||
1184 | mXXPortManager = new XXPortManager( this, this ); | 1185 | mXXPortManager = new XXPortManager( this, this ); |
1185 | 1186 | ||
1186 | #else //KAB_EMBEDDED | 1187 | #else //KAB_EMBEDDED |
1187 | //US initialize viewMenu before settingup viewmanager. | 1188 | //US initialize viewMenu before settingup viewmanager. |
1188 | // Viewmanager needs this menu to plugin submenues. | 1189 | // Viewmanager needs this menu to plugin submenues. |
1189 | viewMenu = new QPopupMenu( this ); | 1190 | viewMenu = new QPopupMenu( this ); |
1190 | settingsMenu = new QPopupMenu( this ); | 1191 | settingsMenu = new QPopupMenu( this ); |
1191 | //filterMenu = new QPopupMenu( this ); | 1192 | //filterMenu = new QPopupMenu( this ); |
1192 | ImportMenu = new QPopupMenu( this ); | 1193 | ImportMenu = new QPopupMenu( this ); |
1193 | ExportMenu = new QPopupMenu( this ); | 1194 | ExportMenu = new QPopupMenu( this ); |
1194 | 1195 | ||
1195 | changeMenu= new QPopupMenu( this ); | 1196 | changeMenu= new QPopupMenu( this ); |
1196 | 1197 | ||
1197 | //US since we have no splitter for the embedded system, setup | 1198 | //US since we have no splitter for the embedded system, setup |
1198 | // a layout with two frames. One left and one right. | 1199 | // a layout with two frames. One left and one right. |
1199 | 1200 | ||
1200 | QBoxLayout *topLayout; | 1201 | QBoxLayout *topLayout; |
1201 | 1202 | ||
1202 | // = new QHBoxLayout( this ); | 1203 | // = new QHBoxLayout( this ); |
1203 | // QBoxLayout *topLayout = (QBoxLayout*)layout(); | 1204 | // QBoxLayout *topLayout = (QBoxLayout*)layout(); |
1204 | 1205 | ||
1205 | // QWidget *mainBox = new QWidget( this ); | 1206 | // QWidget *mainBox = new QWidget( this ); |
1206 | // QBoxLayout * mainBoxLayout = new QHBoxLayout(mainBox); | 1207 | // QBoxLayout * mainBoxLayout = new QHBoxLayout(mainBox); |
1207 | 1208 | ||
1208 | #ifdef DESKTOP_VERSION | 1209 | #ifdef DESKTOP_VERSION |
1209 | topLayout = new QHBoxLayout( this ); | 1210 | topLayout = new QHBoxLayout( this ); |
1210 | 1211 | ||
1211 | 1212 | ||
1212 | mMiniSplitter = new KDGanttMinimizeSplitter( Qt::Horizontal, this); | 1213 | mMiniSplitter = new KDGanttMinimizeSplitter( Qt::Horizontal, this); |
1213 | mMiniSplitter->setMinimizeDirection ( KDGanttMinimizeSplitter::Right ); | 1214 | mMiniSplitter->setMinimizeDirection ( KDGanttMinimizeSplitter::Right ); |
1214 | 1215 | ||
1215 | topLayout->addWidget(mMiniSplitter ); | 1216 | topLayout->addWidget(mMiniSplitter ); |
1216 | 1217 | ||
1217 | mExtensionBarSplitter = new KDGanttMinimizeSplitter( Qt::Vertical,mMiniSplitter ); | 1218 | mExtensionBarSplitter = new KDGanttMinimizeSplitter( Qt::Vertical,mMiniSplitter ); |
1218 | mExtensionBarSplitter->setMinimizeDirection ( KDGanttMinimizeSplitter::Down ); | 1219 | mExtensionBarSplitter->setMinimizeDirection ( KDGanttMinimizeSplitter::Down ); |
1219 | mViewManager = new ViewManager( this, mExtensionBarSplitter ); | 1220 | mViewManager = new ViewManager( this, mExtensionBarSplitter ); |
1220 | mDetails = new ViewContainer( mMiniSplitter ); | 1221 | mDetails = new ViewContainer( mMiniSplitter ); |
1221 | mExtensionManager = new ExtensionManager( this, mExtensionBarSplitter ); | 1222 | mExtensionManager = new ExtensionManager( this, mExtensionBarSplitter ); |
1222 | #else | 1223 | #else |