forked from qt-creator/qt-creator
Added a wizard for Qt Designer custom widgets and collections.
Add the wizard. Modify basefilewizard to use be able to handle binary data. Add some properties to path chooser (filters). Task-number: 251982 Initial-patch-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
This commit is contained in:
@@ -71,10 +71,17 @@ public:
|
||||
QString path() const;
|
||||
void setPath(const QString &p);
|
||||
|
||||
// Contents of the file
|
||||
// Contents of the file (UTF8)
|
||||
QString contents() const;
|
||||
void setContents(const QString &c);
|
||||
|
||||
QByteArray binaryContents() const;
|
||||
void setBinaryContents(const QByteArray &c);
|
||||
|
||||
// Defaults to false (Text file).
|
||||
bool isBinary() const;
|
||||
void setBinary(bool b);
|
||||
|
||||
// Kind of editor to open the file with
|
||||
QString editorKind() const;
|
||||
void setEditorKind(const QString &k);
|
||||
|
||||
Reference in New Issue
Block a user