Browse Source
remove dbg stuff
Signed-off-by: crueter <crueter@eden-emu.dev>
pull/3016/head
crueter
1 week ago
No known key found for this signature in database
GPG Key ID: 425ACD2D4830EBC6
3 changed files with
7 additions and
14 deletions
-
src/Eden/Interface/QMLConfig.h
-
src/Eden/Main/DepsDialog.qml
-
src/Eden/Native/main.cpp
|
|
@ -7,7 +7,6 @@ |
|
|
#include "qt_common/config/qt_config.h" |
|
|
#include "qt_common/config/qt_config.h" |
|
|
|
|
|
|
|
|
#include <QObject> |
|
|
#include <QObject> |
|
|
#include <qdebug.h> |
|
|
|
|
|
|
|
|
|
|
|
class QMLConfig : public QObject { |
|
|
class QMLConfig : public QObject { |
|
|
Q_OBJECT |
|
|
Q_OBJECT |
|
|
|
|
|
@ -66,8 +66,6 @@ NativeDialog { |
|
|
width: 1 |
|
|
width: 1 |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
Component.onCompleted: console.log(display, row) |
|
|
|
|
|
|
|
|
|
|
|
Label { |
|
|
Label { |
|
|
text: display |
|
|
text: display |
|
|
anchors.fill: parent |
|
|
anchors.fill: parent |
|
|
@ -93,8 +91,6 @@ NativeDialog { |
|
|
boundsBehavior: Flickable.StopAtBounds |
|
|
boundsBehavior: Flickable.StopAtBounds |
|
|
clip: true |
|
|
clip: true |
|
|
|
|
|
|
|
|
Component.onCompleted: console.log(itemAtCell(Qt.point(1, 1))) |
|
|
|
|
|
|
|
|
|
|
|
delegate: Rectangle { |
|
|
delegate: Rectangle { |
|
|
required property string display |
|
|
required property string display |
|
|
required property int row |
|
|
required property int row |
|
|
@ -108,8 +104,6 @@ NativeDialog { |
|
|
width: 1 |
|
|
width: 1 |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
Component.onCompleted: console.log(display, row) |
|
|
|
|
|
|
|
|
|
|
|
Label { |
|
|
Label { |
|
|
text: display |
|
|
text: display |
|
|
anchors.fill: parent |
|
|
anchors.fill: parent |
|
|
|
|
|
@ -13,14 +13,14 @@ int main(int argc, char *argv[]) |
|
|
{ |
|
|
{ |
|
|
EdenApplication app(argc, argv); |
|
|
EdenApplication app(argc, argv); |
|
|
|
|
|
|
|
|
QDirIterator iter(QDir(QStringLiteral(":/")), QDirIterator::Subdirectories); |
|
|
|
|
|
|
|
|
// QDirIterator iter(QDir(QStringLiteral(":/")), QDirIterator::Subdirectories);
|
|
|
|
|
|
|
|
|
while (iter.hasNext()) { |
|
|
|
|
|
QString next = iter.next(); |
|
|
|
|
|
if (!next.contains(QStringLiteral("k")) && !next.contains(QStringLiteral("breeze"))) { |
|
|
|
|
|
qDebug() << next; |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
// while (iter.hasNext()) {
|
|
|
|
|
|
// QString next = iter.next();
|
|
|
|
|
|
// if (!next.contains(QStringLiteral("k")) && !next.contains(QStringLiteral("breeze"))) {
|
|
|
|
|
|
// qDebug() << next;
|
|
|
|
|
|
// }
|
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
return app.run(); |
|
|
return app.run(); |
|
|
} |
|
|
} |
|
|
|