Changeset 18198 in vbox for trunk/src/VBox/Frontends/VirtualBox/include
- Timestamp:
- Mar 24, 2009 3:45:22 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 44916
- Location:
- trunk/src/VBox/Frontends/VirtualBox/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/include/VBoxImportApplianceWgt.h
r17053 r18198 39 39 40 40 bool setFile (const QString& aFile); 41 void prepareImport(); 41 42 bool import(); 42 43 43 44 bool isValid() const { return mAppliance != NULL; } 45 QList < QPair <QString, QString> > licenseAgreements() const; 44 46 45 47 static int minGuestRAM() { return mMinGuestRAM; } -
trunk/src/VBox/Frontends/VirtualBox/include/VBoxImportApplianceWzd.h
r17053 r18198 27 27 #include "QIAbstractWizard.h" 28 28 #include "QIWithRetranslateUI.h" 29 #include "QIDialog.h" 29 30 30 31 class QIWidgetValidator; 32 33 class QDialogButtonBox; 34 35 class VBoxImportLicenseViewer: public QIDialog 36 { 37 Q_OBJECT; 38 39 public: 40 VBoxImportLicenseViewer (QWidget *aParent = NULL); 41 42 void setContent (const QString &aName, const QString &aText); 43 44 protected: 45 void retranslateUi(); 46 47 private slots: 48 void print(); 49 void save(); 50 51 private: 52 QLabel *mCaption; 53 QTextEdit *mLicenseText; 54 QDialogButtonBox *mButtonBox; 55 QPushButton *mPrintBtn; 56 QPushButton *mSaveBtn; 57 QString mName; 58 QString mText; 59 }; 31 60 32 61 class VBoxImportApplianceWzd : public QIWithRetranslateUI<QIAbstractWizard>,
Note:
See TracChangeset
for help on using the changeset viewer.