Added demos.

This commit is contained in:
2025-12-30 23:34:28 +01:00
parent 26069dc4e4
commit 0b67f4c166
24 changed files with 2784 additions and 6 deletions

View File

@@ -52,8 +52,29 @@ bool setApplicationStyleSheet( QAnyStringView path )
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
//setApplicationStyleSheet( ":/bionxcontrol.qss"_L1 );
setApplicationStyleSheet( ":/claude_dark_mode.qss"_L1 );
/*
app.setStyleSheet(R"(
QWidget {
background-color: #F3F3F3;
font-family: 'Segoe UI Variable', 'Segoe UI', sans-serif;
}
)");
*/
/*
app.setStyleSheet(R"(
* {
font-family: 'Calibri', 'Carlito', 'Arial', sans-serif;
font-size: 12pt;
})");
*/
//QFont font("segoe UI", 12); // Name, Größe
//QFont font("calibri", 12); // Name, Größe
//app.setFont(font);
BCMainWindow w;
w.show();