Changeset 924 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Feb 15, 2007 11:40:56 AM (18 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/Makefile
r382 r924 71 71 # UI headers (ui.h) containing local definitions of classes that use the Q_OBJECT macro 72 72 VirtualBox_QT_MOCUIHDRS = \ 73 ui/VBoxVMSettingsDlg.ui.h 73 ui/VBoxVMSettingsDlg.ui.h \ 74 ui/VBoxSharedFoldersSettings.ui.h 74 75 75 76 VirtualBox_GENSRCS = \ -
trunk/src/VBox/Frontends/VirtualBox/VBoxUI.pro
r879 r924 28 28 ui/VBoxVMNetworkSettings.ui \ 29 29 ui/VBoxUSBFilterSettings.ui \ 30 ui/VBoxSharedFoldersSettings.ui \ 30 31 ui/VBoxNewVMWzd.ui \ 31 32 ui/VBoxCloseVMDlg.ui \ -
trunk/src/VBox/Frontends/VirtualBox/ui/VBoxVMSettingsDlg.ui
r704 r924 252 252 </property> 253 253 </item> 254 <item> 255 <property name="text"> 256 <string> Shared Folders </string> 257 </property> 258 <property name="text"> 259 <string>8</string> 260 </property> 261 <property name="text"> 262 <string>#sfolders</string> 263 </property> 264 <property name="pixmap"> 265 <pixmap>select_file_16px.png</pixmap> 266 </property> 267 <property name="pixmap"> 268 <pixmap></pixmap> 269 </property> 270 <property name="pixmap"> 271 <pixmap></pixmap> 272 </property> 273 </item> 254 274 <property name="name"> 255 275 <cstring>listView</cstring> … … 2284 2304 </spacer> 2285 2305 </vbox> 2306 </widget> 2307 <widget class="QWidget"> 2308 <property name="name"> 2309 <cstring>pageFolders</cstring> 2310 </property> 2311 <attribute name="id"> 2312 <number>8</number> 2313 </attribute> 2286 2314 </widget> 2287 2315 </widget> … … 2655 2683 <include location="local" impldecl="in implementation">VBoxVMNetworkSettings.h</include> 2656 2684 <include location="local" impldecl="in implementation">VBoxUSBFilterSettings.h</include> 2685 <include location="local" impldecl="in implementation">VBoxSharedFoldersSettings.h</include> 2657 2686 <include location="local" impldecl="in implementation">VBoxDiskImageManagerDlg.h</include> 2658 2687 <include location="local" impldecl="in implementation">VBoxMediaComboBox.h</include> … … 2662 2691 <forward>class VBoxDiskImageManagerDlg</forward> 2663 2692 <forward>class VBoxUSBMenu</forward> 2693 <forward>class VBoxSharedFoldersSettings</forward> 2664 2694 </forwards> 2665 2695 <variables> … … 2686 2716 <variable access="private">bool mUSBFilterListModified;</variable> 2687 2717 <variable access="private">QTabWidget* tbwNetwork;</variable> 2718 <variable access="private">VBoxSharedFoldersSettings* mSharedFolders;</variable> 2688 2719 <variable access="private">QString warningString;</variable> 2689 2720 <variable access="private">VBoxMediaComboBox *cbHDA;</variable> -
trunk/src/VBox/Frontends/VirtualBox/ui/VBoxVMSettingsDlg.ui.h
r879 r924 485 485 connect (leVRDPPort, SIGNAL (textChanged (const QString&)), wvalFloppy, SLOT (revalidate())); 486 486 connect (leVRDPTimeout, SIGNAL (textChanged (const QString&)), wvalFloppy, SLOT (revalidate())); 487 488 /* Shared Folders Page */ 489 490 QVBoxLayout* pageFoldersLayout = new QVBoxLayout (pageFolders, 0, 10, "pageFoldersLayout"); 491 mSharedFolders = new VBoxSharedFoldersSettings (pageFolders, "sharedFolders"); 492 pageFoldersLayout->addWidget (mSharedFolders); 487 493 488 494 /* … … 1291 1297 } 1292 1298 1299 /* shared folders */ 1300 { 1301 mSharedFolders->loadFromMachine (machine); 1302 } 1303 1293 1304 /* request for media shortcuts update */ 1294 1305 cbHDA->setBelongsTo (machine.GetId()); … … 1521 1532 } 1522 1533 1534 /* shared folders */ 1535 { 1536 mSharedFolders->saveToMachine (cmachine); 1537 } 1538 1523 1539 return COMResult(); 1524 1540 }
Note:
See TracChangeset
for help on using the changeset viewer.