Restructure resources + more
1) organized resources 2) added filter examples 3) fixed search tree not resetting correctly when starting a different searche 4) fixed incorrect biome availability when editing an existing layered condition
@ -13,7 +13,7 @@ For the linux build you will probably have to add the executable flags to the bi
|
||||
|
||||
For Arch linux users, the tool may be found in the [AUR](https://aur.archlinux.org/packages/cubiomes-viewer/) thanks to [JakobDev](https://github.com/JakobDev).
|
||||
|
||||
Non-PC platforms, such as macOS, are not formally supported, but you can check [here](https://github.com/Cubitect/cubiomes-viewer/issues/107) for more information on this issue.
|
||||
Non-PC platforms, such as macOS are not formally supported, but you can check [this issue](https://github.com/Cubitect/cubiomes-viewer/issues/108) for help regarding unofficial builds.
|
||||
|
||||
|
||||
## Build from source
|
||||
|
2
cubiomes
@ -1 +1 @@
|
||||
Subproject commit a1b582201fcf9c48f9b26eaf968f9684059becd3
|
||||
Subproject commit 027cd6845a6d545625a3c0cdaf957a3c4d906fef
|
@ -38,6 +38,7 @@ SOURCES += \
|
||||
src/aboutdialog.cpp \
|
||||
src/collapsible.cpp \
|
||||
src/configdialog.cpp \
|
||||
src/examplesdialog.cpp \
|
||||
src/extgendialog.cpp \
|
||||
src/formconditions.cpp \
|
||||
src/formgen48.cpp \
|
||||
@ -63,6 +64,7 @@ HEADERS += \
|
||||
src/aboutdialog.h \
|
||||
src/collapsible.h \
|
||||
src/configdialog.h \
|
||||
src/examplesdialog.h \
|
||||
src/extgendialog.h \
|
||||
src/formconditions.h \
|
||||
src/formgen48.h \
|
||||
@ -85,6 +87,7 @@ HEADERS += \
|
||||
FORMS += \
|
||||
src/aboutdialog.ui \
|
||||
src/configdialog.ui \
|
||||
src/examplesdialog.ui \
|
||||
src/extgendialog.ui \
|
||||
src/formconditions.ui \
|
||||
src/formgen48.ui \
|
||||
@ -97,5 +100,8 @@ FORMS += \
|
||||
src/rangedialog.ui
|
||||
|
||||
RESOURCES += \
|
||||
icons.qrc \
|
||||
style.qrc
|
||||
rc/icons.qrc \
|
||||
rc/style.qrc \
|
||||
rc/examples.qrc
|
||||
|
||||
|
||||
|
@ -86,14 +86,14 @@ QMainWindow::separator:horizontal {
|
||||
width: 5px;
|
||||
margin-top: 2px;
|
||||
margin-bottom: 2px;
|
||||
image: url(":/rc/toolbar_separator_vertical.png");
|
||||
image: url(":/dark/toolbar_separator_vertical.png");
|
||||
}
|
||||
|
||||
QMainWindow::separator:vertical {
|
||||
height: 5px;
|
||||
margin-left: 2px;
|
||||
margin-right: 2px;
|
||||
image: url(":/rc/toolbar_separator_horizontal.png");
|
||||
image: url(":/dark/toolbar_separator_horizontal.png");
|
||||
}
|
||||
|
||||
/* QToolTip ---------------------------------------------------------------
|
||||
@ -172,41 +172,41 @@ QCheckBox::indicator {
|
||||
}
|
||||
|
||||
QCheckBox::indicator:unchecked {
|
||||
image: url(":/rc/checkbox_unchecked.png");
|
||||
image: url(":/dark/checkbox_unchecked.png");
|
||||
}
|
||||
|
||||
QCheckBox::indicator:unchecked:hover, QCheckBox::indicator:unchecked:focus, QCheckBox::indicator:unchecked:pressed {
|
||||
border: none;
|
||||
image: url(":/rc/checkbox_unchecked_focus.png");
|
||||
image: url(":/dark/checkbox_unchecked_focus.png");
|
||||
}
|
||||
|
||||
QCheckBox::indicator:unchecked:disabled {
|
||||
image: url(":/rc/checkbox_unchecked_disabled.png");
|
||||
image: url(":/dark/checkbox_unchecked_disabled.png");
|
||||
}
|
||||
|
||||
QCheckBox::indicator:checked {
|
||||
image: url(":/rc/checkbox_checked.png");
|
||||
image: url(":/dark/checkbox_checked.png");
|
||||
}
|
||||
|
||||
QCheckBox::indicator:checked:hover, QCheckBox::indicator:checked:focus, QCheckBox::indicator:checked:pressed {
|
||||
border: none;
|
||||
image: url(":/rc/checkbox_checked_focus.png");
|
||||
image: url(":/dark/checkbox_checked_focus.png");
|
||||
}
|
||||
|
||||
QCheckBox::indicator:checked:disabled {
|
||||
image: url(":/rc/checkbox_checked_disabled.png");
|
||||
image: url(":/dark/checkbox_checked_disabled.png");
|
||||
}
|
||||
|
||||
QCheckBox::indicator:indeterminate {
|
||||
image: url(":/rc/checkbox_indeterminate.png");
|
||||
image: url(":/dark/checkbox_indeterminate.png");
|
||||
}
|
||||
|
||||
QCheckBox::indicator:indeterminate:disabled {
|
||||
image: url(":/rc/checkbox_indeterminate_disabled.png");
|
||||
image: url(":/dark/checkbox_indeterminate_disabled.png");
|
||||
}
|
||||
|
||||
QCheckBox::indicator:indeterminate:focus, QCheckBox::indicator:indeterminate:hover, QCheckBox::indicator:indeterminate:pressed {
|
||||
image: url(":/rc/checkbox_indeterminate_focus.png");
|
||||
image: url(":/dark/checkbox_indeterminate_focus.png");
|
||||
}
|
||||
|
||||
/* QGroupBox --------------------------------------------------------------
|
||||
@ -242,30 +242,30 @@ QGroupBox::indicator {
|
||||
|
||||
QGroupBox::indicator:unchecked {
|
||||
border: none;
|
||||
image: url(":/rc/checkbox_unchecked.png");
|
||||
image: url(":/dark/checkbox_unchecked.png");
|
||||
}
|
||||
|
||||
QGroupBox::indicator:unchecked:hover, QGroupBox::indicator:unchecked:focus, QGroupBox::indicator:unchecked:pressed {
|
||||
border: none;
|
||||
image: url(":/rc/checkbox_unchecked_focus.png");
|
||||
image: url(":/dark/checkbox_unchecked_focus.png");
|
||||
}
|
||||
|
||||
QGroupBox::indicator:unchecked:disabled {
|
||||
image: url(":/rc/checkbox_unchecked_disabled.png");
|
||||
image: url(":/dark/checkbox_unchecked_disabled.png");
|
||||
}
|
||||
|
||||
QGroupBox::indicator:checked {
|
||||
border: none;
|
||||
image: url(":/rc/checkbox_checked.png");
|
||||
image: url(":/dark/checkbox_checked.png");
|
||||
}
|
||||
|
||||
QGroupBox::indicator:checked:hover, QGroupBox::indicator:checked:focus, QGroupBox::indicator:checked:pressed {
|
||||
border: none;
|
||||
image: url(":/rc/checkbox_checked_focus.png");
|
||||
image: url(":/dark/checkbox_checked_focus.png");
|
||||
}
|
||||
|
||||
QGroupBox::indicator:checked:disabled {
|
||||
image: url(":/rc/checkbox_checked_disabled.png");
|
||||
image: url(":/dark/checkbox_checked_disabled.png");
|
||||
}
|
||||
|
||||
/* QRadioButton -----------------------------------------------------------
|
||||
@ -312,34 +312,34 @@ QRadioButton::indicator {
|
||||
}
|
||||
|
||||
QRadioButton::indicator:unchecked {
|
||||
image: url(":/rc/radio_unchecked.png");
|
||||
image: url(":/dark/radio_unchecked.png");
|
||||
}
|
||||
|
||||
QRadioButton::indicator:unchecked:hover, QRadioButton::indicator:unchecked:focus, QRadioButton::indicator:unchecked:pressed {
|
||||
border: none;
|
||||
outline: none;
|
||||
image: url(":/rc/radio_unchecked_focus.png");
|
||||
image: url(":/dark/radio_unchecked_focus.png");
|
||||
}
|
||||
|
||||
QRadioButton::indicator:unchecked:disabled {
|
||||
image: url(":/rc/radio_unchecked_disabled.png");
|
||||
image: url(":/dark/radio_unchecked_disabled.png");
|
||||
}
|
||||
|
||||
QRadioButton::indicator:checked {
|
||||
border: none;
|
||||
outline: none;
|
||||
image: url(":/rc/radio_checked.png");
|
||||
image: url(":/dark/radio_checked.png");
|
||||
}
|
||||
|
||||
QRadioButton::indicator:checked:hover, QRadioButton::indicator:checked:focus, QRadioButton::indicator:checked:pressed {
|
||||
border: none;
|
||||
outline: none;
|
||||
image: url(":/rc/radio_checked_focus.png");
|
||||
image: url(":/dark/radio_checked_focus.png");
|
||||
}
|
||||
|
||||
QRadioButton::indicator:checked:disabled {
|
||||
outline: none;
|
||||
image: url(":/rc/radio_checked_disabled.png");
|
||||
image: url(":/dark/radio_checked_disabled.png");
|
||||
}
|
||||
|
||||
/* QMenuBar ---------------------------------------------------------------
|
||||
@ -430,78 +430,78 @@ QMenu::indicator {
|
||||
}
|
||||
|
||||
QMenu::indicator:non-exclusive:unchecked {
|
||||
image: url(":/rc/checkbox_unchecked.png");
|
||||
image: url(":/dark/checkbox_unchecked.png");
|
||||
}
|
||||
|
||||
QMenu::indicator:non-exclusive:unchecked:hover, QMenu::indicator:non-exclusive:unchecked:focus, QMenu::indicator:non-exclusive:unchecked:pressed {
|
||||
border: none;
|
||||
image: url(":/rc/checkbox_unchecked_focus.png");
|
||||
image: url(":/dark/checkbox_unchecked_focus.png");
|
||||
}
|
||||
|
||||
QMenu::indicator:non-exclusive:unchecked:disabled {
|
||||
image: url(":/rc/checkbox_unchecked_disabled.png");
|
||||
image: url(":/dark/checkbox_unchecked_disabled.png");
|
||||
}
|
||||
|
||||
QMenu::indicator:non-exclusive:checked {
|
||||
image: url(":/rc/checkbox_checked.png");
|
||||
image: url(":/dark/checkbox_checked.png");
|
||||
}
|
||||
|
||||
QMenu::indicator:non-exclusive:checked:hover, QMenu::indicator:non-exclusive:checked:focus, QMenu::indicator:non-exclusive:checked:pressed {
|
||||
border: none;
|
||||
image: url(":/rc/checkbox_checked_focus.png");
|
||||
image: url(":/dark/checkbox_checked_focus.png");
|
||||
}
|
||||
|
||||
QMenu::indicator:non-exclusive:checked:disabled {
|
||||
image: url(":/rc/checkbox_checked_disabled.png");
|
||||
image: url(":/dark/checkbox_checked_disabled.png");
|
||||
}
|
||||
|
||||
QMenu::indicator:non-exclusive:indeterminate {
|
||||
image: url(":/rc/checkbox_indeterminate.png");
|
||||
image: url(":/dark/checkbox_indeterminate.png");
|
||||
}
|
||||
|
||||
QMenu::indicator:non-exclusive:indeterminate:disabled {
|
||||
image: url(":/rc/checkbox_indeterminate_disabled.png");
|
||||
image: url(":/dark/checkbox_indeterminate_disabled.png");
|
||||
}
|
||||
|
||||
QMenu::indicator:non-exclusive:indeterminate:focus, QMenu::indicator:non-exclusive:indeterminate:hover, QMenu::indicator:non-exclusive:indeterminate:pressed {
|
||||
image: url(":/rc/checkbox_indeterminate_focus.png");
|
||||
image: url(":/dark/checkbox_indeterminate_focus.png");
|
||||
}
|
||||
|
||||
QMenu::indicator:exclusive:unchecked {
|
||||
image: url(":/rc/radio_unchecked.png");
|
||||
image: url(":/dark/radio_unchecked.png");
|
||||
}
|
||||
|
||||
QMenu::indicator:exclusive:unchecked:hover, QMenu::indicator:exclusive:unchecked:focus, QMenu::indicator:exclusive:unchecked:pressed {
|
||||
border: none;
|
||||
outline: none;
|
||||
image: url(":/rc/radio_unchecked_focus.png");
|
||||
image: url(":/dark/radio_unchecked_focus.png");
|
||||
}
|
||||
|
||||
QMenu::indicator:exclusive:unchecked:disabled {
|
||||
image: url(":/rc/radio_unchecked_disabled.png");
|
||||
image: url(":/dark/radio_unchecked_disabled.png");
|
||||
}
|
||||
|
||||
QMenu::indicator:exclusive:checked {
|
||||
border: none;
|
||||
outline: none;
|
||||
image: url(":/rc/radio_checked.png");
|
||||
image: url(":/dark/radio_checked.png");
|
||||
}
|
||||
|
||||
QMenu::indicator:exclusive:checked:hover, QMenu::indicator:exclusive:checked:focus, QMenu::indicator:exclusive:checked:pressed {
|
||||
border: none;
|
||||
outline: none;
|
||||
image: url(":/rc/radio_checked_focus.png");
|
||||
image: url(":/dark/radio_checked_focus.png");
|
||||
}
|
||||
|
||||
QMenu::indicator:exclusive:checked:disabled {
|
||||
outline: none;
|
||||
image: url(":/rc/radio_checked_disabled.png");
|
||||
image: url(":/dark/radio_checked_disabled.png");
|
||||
}
|
||||
|
||||
QMenu::right-arrow {
|
||||
margin: 5px;
|
||||
padding-left: 12px;
|
||||
image: url(":/rc/arrow_right.png");
|
||||
image: url(":/dark/arrow_right.png");
|
||||
height: 12px;
|
||||
width: 12px;
|
||||
}
|
||||
@ -607,7 +607,7 @@ QScrollBar::handle:vertical:focus {
|
||||
|
||||
QScrollBar::add-line:horizontal {
|
||||
margin: 0px 0px 0px 0px;
|
||||
border-image: url(":/rc/arrow_right_disabled.png");
|
||||
border-image: url(":/dark/arrow_right_disabled.png");
|
||||
height: 12px;
|
||||
width: 12px;
|
||||
subcontrol-position: right;
|
||||
@ -615,7 +615,7 @@ QScrollBar::add-line:horizontal {
|
||||
}
|
||||
|
||||
QScrollBar::add-line:horizontal:hover, QScrollBar::add-line:horizontal:on {
|
||||
border-image: url(":/rc/arrow_right.png");
|
||||
border-image: url(":/dark/arrow_right.png");
|
||||
height: 12px;
|
||||
width: 12px;
|
||||
subcontrol-position: right;
|
||||
@ -624,7 +624,7 @@ QScrollBar::add-line:horizontal:hover, QScrollBar::add-line:horizontal:on {
|
||||
|
||||
QScrollBar::add-line:vertical {
|
||||
margin: 3px 0px 3px 0px;
|
||||
border-image: url(":/rc/arrow_down_disabled.png");
|
||||
border-image: url(":/dark/arrow_down_disabled.png");
|
||||
height: 12px;
|
||||
width: 12px;
|
||||
subcontrol-position: bottom;
|
||||
@ -632,7 +632,7 @@ QScrollBar::add-line:vertical {
|
||||
}
|
||||
|
||||
QScrollBar::add-line:vertical:hover, QScrollBar::add-line:vertical:on {
|
||||
border-image: url(":/rc/arrow_down.png");
|
||||
border-image: url(":/dark/arrow_down.png");
|
||||
height: 12px;
|
||||
width: 12px;
|
||||
subcontrol-position: bottom;
|
||||
@ -641,7 +641,7 @@ QScrollBar::add-line:vertical:hover, QScrollBar::add-line:vertical:on {
|
||||
|
||||
QScrollBar::sub-line:horizontal {
|
||||
margin: 0px 3px 0px 3px;
|
||||
border-image: url(":/rc/arrow_left_disabled.png");
|
||||
border-image: url(":/dark/arrow_left_disabled.png");
|
||||
height: 12px;
|
||||
width: 12px;
|
||||
subcontrol-position: left;
|
||||
@ -649,7 +649,7 @@ QScrollBar::sub-line:horizontal {
|
||||
}
|
||||
|
||||
QScrollBar::sub-line:horizontal:hover, QScrollBar::sub-line:horizontal:on {
|
||||
border-image: url(":/rc/arrow_left.png");
|
||||
border-image: url(":/dark/arrow_left.png");
|
||||
height: 12px;
|
||||
width: 12px;
|
||||
subcontrol-position: left;
|
||||
@ -658,7 +658,7 @@ QScrollBar::sub-line:horizontal:hover, QScrollBar::sub-line:horizontal:on {
|
||||
|
||||
QScrollBar::sub-line:vertical {
|
||||
margin: 3px 0px 3px 0px;
|
||||
border-image: url(":/rc/arrow_up_disabled.png");
|
||||
border-image: url(":/dark/arrow_up_disabled.png");
|
||||
height: 12px;
|
||||
width: 12px;
|
||||
subcontrol-position: top;
|
||||
@ -666,7 +666,7 @@ QScrollBar::sub-line:vertical {
|
||||
}
|
||||
|
||||
QScrollBar::sub-line:vertical:hover, QScrollBar::sub-line:vertical:on {
|
||||
border-image: url(":/rc/arrow_up.png");
|
||||
border-image: url(":/dark/arrow_up.png");
|
||||
height: 12px;
|
||||
width: 12px;
|
||||
subcontrol-position: top;
|
||||
@ -738,7 +738,7 @@ QSizeGrip {
|
||||
background: transparent;
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
image: url(":/rc/window_grip.png");
|
||||
image: url(":/dark/window_grip.png");
|
||||
}
|
||||
|
||||
/* QStackedWidget ---------------------------------------------------------
|
||||
@ -770,29 +770,29 @@ QToolBar:disabled {
|
||||
|
||||
QToolBar::handle:horizontal {
|
||||
width: 16px;
|
||||
image: url(":/rc/toolbar_move_horizontal.png");
|
||||
image: url(":/dark/toolbar_move_horizontal.png");
|
||||
}
|
||||
|
||||
QToolBar::handle:vertical {
|
||||
height: 16px;
|
||||
image: url(":/rc/toolbar_move_vertical.png");
|
||||
image: url(":/dark/toolbar_move_vertical.png");
|
||||
}
|
||||
|
||||
QToolBar::separator:horizontal {
|
||||
width: 10px;
|
||||
image: url(":/rc/toolbar_separator_horizontal.png");
|
||||
image: url(":/dark/toolbar_separator_horizontal.png");
|
||||
}
|
||||
|
||||
QToolBar::separator:vertical {
|
||||
height: 10px;
|
||||
image: url(":/rc/toolbar_separator_vertical.png");
|
||||
image: url(":/dark/toolbar_separator_vertical.png");
|
||||
}
|
||||
|
||||
QToolButton#qt_toolbar_ext_button {
|
||||
background: #455364;
|
||||
border: 0px;
|
||||
color: #E0E1E3;
|
||||
image: url(":/rc/arrow_right.png");
|
||||
image: url(":/dark/arrow_right.png");
|
||||
}
|
||||
|
||||
/* QAbstractSpinBox -------------------------------------------------------
|
||||
@ -826,13 +826,13 @@ QAbstractSpinBox:up-button {
|
||||
}
|
||||
|
||||
QAbstractSpinBox::up-arrow, QAbstractSpinBox::up-arrow:disabled, QAbstractSpinBox::up-arrow:off {
|
||||
image: url(":/rc/arrow_up_disabled.png");
|
||||
image: url(":/dark/arrow_up_disabled.png");
|
||||
height: 8px;
|
||||
width: 8px;
|
||||
}
|
||||
|
||||
QAbstractSpinBox::up-arrow:hover {
|
||||
image: url(":/rc/arrow_up.png");
|
||||
image: url(":/dark/arrow_up.png");
|
||||
}
|
||||
|
||||
QAbstractSpinBox:down-button {
|
||||
@ -849,13 +849,13 @@ QAbstractSpinBox:down-button {
|
||||
}
|
||||
|
||||
QAbstractSpinBox::down-arrow, QAbstractSpinBox::down-arrow:disabled, QAbstractSpinBox::down-arrow:off {
|
||||
image: url(":/rc/arrow_down_disabled.png");
|
||||
image: url(":/dark/arrow_down_disabled.png");
|
||||
height: 8px;
|
||||
width: 8px;
|
||||
}
|
||||
|
||||
QAbstractSpinBox::down-arrow:hover {
|
||||
image: url(":/rc/arrow_down.png");
|
||||
image: url(":/dark/arrow_down.png");
|
||||
}
|
||||
|
||||
QAbstractSpinBox:hover {
|
||||
@ -1174,7 +1174,7 @@ QToolButton::menu-button:checked:hover {
|
||||
}
|
||||
|
||||
QToolButton::menu-indicator {
|
||||
image: url(":/rc/arrow_down.png");
|
||||
image: url(":/dark/arrow_down.png");
|
||||
height: 8px;
|
||||
width: 8px;
|
||||
top: 0;
|
||||
@ -1184,13 +1184,13 @@ QToolButton::menu-indicator {
|
||||
}
|
||||
|
||||
QToolButton::menu-arrow {
|
||||
image: url(":/rc/arrow_down.png");
|
||||
image: url(":/dark/arrow_down.png");
|
||||
height: 8px;
|
||||
width: 8px;
|
||||
}
|
||||
|
||||
QToolButton::menu-arrow:hover {
|
||||
image: url(":/rc/arrow_down_focus.png");
|
||||
image: url(":/dark/arrow_down_focus.png");
|
||||
}
|
||||
|
||||
/* QCommandLinkButton -----------------------------------------------------
|
||||
@ -1306,13 +1306,13 @@ QComboBox::drop-down {
|
||||
}
|
||||
|
||||
QComboBox::down-arrow {
|
||||
image: url(":/rc/arrow_down_disabled.png");
|
||||
image: url(":/dark/arrow_down_disabled.png");
|
||||
height: 8px;
|
||||
width: 8px;
|
||||
}
|
||||
|
||||
QComboBox::down-arrow:on, QComboBox::down-arrow:hover, QComboBox::down-arrow:focus {
|
||||
image: url(":/rc/arrow_down.png");
|
||||
image: url(":/dark/arrow_down.png");
|
||||
}
|
||||
|
||||
/* QSlider ----------------------------------------------------------------
|
||||
@ -1488,15 +1488,15 @@ QTabBar::close-button, QDockWidget QTabBar::close-button {
|
||||
border: 0;
|
||||
margin: 0;
|
||||
padding: 4px;
|
||||
image: url(":/rc/window_close.png");
|
||||
image: url(":/dark/window_close.png");
|
||||
}
|
||||
|
||||
QTabBar::close-button:hover, QDockWidget QTabBar::close-button:hover {
|
||||
image: url(":/rc/window_close_focus.png");
|
||||
image: url(":/dark/window_close_focus.png");
|
||||
}
|
||||
|
||||
QTabBar::close-button:pressed, QDockWidget QTabBar::close-button:pressed {
|
||||
image: url(":/rc/window_close_pressed.png");
|
||||
image: url(":/dark/window_close_pressed.png");
|
||||
}
|
||||
|
||||
QTabBar::tab, QDockWidget QTabBar::tab {
|
||||
@ -1694,19 +1694,19 @@ QTabBar QToolButton:pressed:hover, QDockWidget QTabBar QToolButton:pressed:hover
|
||||
}
|
||||
|
||||
QTabBar QToolButton::left-arrow:enabled, QDockWidget QTabBar QToolButton::left-arrow:enabled {
|
||||
image: url(":/rc/arrow_left.png");
|
||||
image: url(":/dark/arrow_left.png");
|
||||
}
|
||||
|
||||
QTabBar QToolButton::left-arrow:disabled, QDockWidget QTabBar QToolButton::left-arrow:disabled {
|
||||
image: url(":/rc/arrow_left_disabled.png");
|
||||
image: url(":/dark/arrow_left_disabled.png");
|
||||
}
|
||||
|
||||
QTabBar QToolButton::right-arrow:enabled, QDockWidget QTabBar QToolButton::right-arrow:enabled {
|
||||
image: url(":/rc/arrow_right.png");
|
||||
image: url(":/dark/arrow_right.png");
|
||||
}
|
||||
|
||||
QTabBar QToolButton::right-arrow:disabled, QDockWidget QTabBar QToolButton::right-arrow:disabled {
|
||||
image: url(":/rc/arrow_right_disabled.png");
|
||||
image: url(":/dark/arrow_right_disabled.png");
|
||||
}
|
||||
|
||||
/* QDockWiget -------------------------------------------------------------
|
||||
@ -1717,8 +1717,8 @@ QDockWidget {
|
||||
background-color: #19232D;
|
||||
border: 1px solid #455364;
|
||||
border-radius: 4px;
|
||||
titlebar-close-icon: url(":/rc/transparent.png");
|
||||
titlebar-normal-icon: url(":/rc/transparent.png");
|
||||
titlebar-close-icon: url(":/dark/transparent.png");
|
||||
titlebar-normal-icon: url(":/dark/transparent.png");
|
||||
}
|
||||
|
||||
QDockWidget::title {
|
||||
@ -1737,15 +1737,15 @@ QDockWidget::close-button {
|
||||
border: 0;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
image: url(":/rc/window_close.png");
|
||||
image: url(":/dark/window_close.png");
|
||||
}
|
||||
|
||||
QDockWidget::close-button:hover {
|
||||
image: url(":/rc/window_close_focus.png");
|
||||
image: url(":/dark/window_close_focus.png");
|
||||
}
|
||||
|
||||
QDockWidget::close-button:pressed {
|
||||
image: url(":/rc/window_close_pressed.png");
|
||||
image: url(":/dark/window_close_pressed.png");
|
||||
}
|
||||
|
||||
QDockWidget::float-button {
|
||||
@ -1756,15 +1756,15 @@ QDockWidget::float-button {
|
||||
border: 0;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
image: url(":/rc/window_undock.png");
|
||||
image: url(":/dark/window_undock.png");
|
||||
}
|
||||
|
||||
QDockWidget::float-button:hover {
|
||||
image: url(":/rc/window_undock_focus.png");
|
||||
image: url(":/dark/window_undock_focus.png");
|
||||
}
|
||||
|
||||
QDockWidget::float-button:pressed {
|
||||
image: url(":/rc/window_undock_pressed.png");
|
||||
image: url(":/dark/window_undock_pressed.png");
|
||||
}
|
||||
|
||||
/* QTreeView QListView QTableView -----------------------------------------
|
||||
@ -1775,44 +1775,44 @@ https://doc.qt.io/qt-5/stylesheet-examples.html#customizing-qtableview
|
||||
|
||||
--------------------------------------------------------------------------- */
|
||||
QTreeView:branch:selected, QTreeView:branch:hover {
|
||||
background: url(":/rc/transparent.png");
|
||||
background: url(":/dark/transparent.png");
|
||||
}
|
||||
|
||||
QTreeView:branch:has-siblings:!adjoins-item {
|
||||
border-image: url(":/rc/branch_line.png") 0;
|
||||
border-image: url(":/dark/branch_line.png") 0;
|
||||
}
|
||||
|
||||
QTreeView:branch:has-siblings:adjoins-item {
|
||||
border-image: url(":/rc/branch_more.png") 0;
|
||||
border-image: url(":/dark/branch_more.png") 0;
|
||||
}
|
||||
|
||||
QTreeView:branch:!has-children:!has-siblings:adjoins-item {
|
||||
border-image: url(":/rc/branch_end.png") 0;
|
||||
border-image: url(":/dark/branch_end.png") 0;
|
||||
}
|
||||
|
||||
QTreeView:branch:has-children:!has-siblings:closed, QTreeView:branch:closed:has-children:has-siblings {
|
||||
border-image: none;
|
||||
image: url(":/rc/branch_closed.png");
|
||||
image: url(":/dark/branch_closed.png");
|
||||
}
|
||||
|
||||
QTreeView:branch:open:has-children:!has-siblings, QTreeView:branch:open:has-children:has-siblings {
|
||||
border-image: none;
|
||||
image: url(":/rc/branch_open.png");
|
||||
image: url(":/dark/branch_open.png");
|
||||
}
|
||||
|
||||
QTreeView:branch:has-children:!has-siblings:closed:hover, QTreeView:branch:closed:has-children:has-siblings:hover {
|
||||
image: url(":/rc/branch_closed_focus.png");
|
||||
image: url(":/dark/branch_closed_focus.png");
|
||||
}
|
||||
|
||||
QTreeView:branch:open:has-children:!has-siblings:hover, QTreeView:branch:open:has-children:has-siblings:hover {
|
||||
image: url(":/rc/branch_open_focus.png");
|
||||
image: url(":/dark/branch_open_focus.png");
|
||||
}
|
||||
|
||||
QTreeView::indicator:checked,
|
||||
QListView::indicator:checked,
|
||||
QTableView::indicator:checked,
|
||||
QColumnView::indicator:checked {
|
||||
image: url(":/rc/checkbox_checked.png");
|
||||
image: url(":/dark/checkbox_checked.png");
|
||||
}
|
||||
|
||||
QTreeView::indicator:checked:hover, QTreeView::indicator:checked:focus, QTreeView::indicator:checked:pressed,
|
||||
@ -1825,14 +1825,14 @@ QTableView::indicator:checked:pressed,
|
||||
QColumnView::indicator:checked:hover,
|
||||
QColumnView::indicator:checked:focus,
|
||||
QColumnView::indicator:checked:pressed {
|
||||
image: url(":/rc/checkbox_checked_focus.png");
|
||||
image: url(":/dark/checkbox_checked_focus.png");
|
||||
}
|
||||
|
||||
QTreeView::indicator:unchecked,
|
||||
QListView::indicator:unchecked,
|
||||
QTableView::indicator:unchecked,
|
||||
QColumnView::indicator:unchecked {
|
||||
image: url(":/rc/checkbox_unchecked.png");
|
||||
image: url(":/dark/checkbox_unchecked.png");
|
||||
}
|
||||
|
||||
QTreeView::indicator:unchecked:hover, QTreeView::indicator:unchecked:focus, QTreeView::indicator:unchecked:pressed,
|
||||
@ -1845,14 +1845,14 @@ QTableView::indicator:unchecked:pressed,
|
||||
QColumnView::indicator:unchecked:hover,
|
||||
QColumnView::indicator:unchecked:focus,
|
||||
QColumnView::indicator:unchecked:pressed {
|
||||
image: url(":/rc/checkbox_unchecked_focus.png");
|
||||
image: url(":/dark/checkbox_unchecked_focus.png");
|
||||
}
|
||||
|
||||
QTreeView::indicator:indeterminate,
|
||||
QListView::indicator:indeterminate,
|
||||
QTableView::indicator:indeterminate,
|
||||
QColumnView::indicator:indeterminate {
|
||||
image: url(":/rc/checkbox_indeterminate.png");
|
||||
image: url(":/dark/checkbox_indeterminate.png");
|
||||
}
|
||||
|
||||
QTreeView::indicator:indeterminate:hover, QTreeView::indicator:indeterminate:focus, QTreeView::indicator:indeterminate:pressed,
|
||||
@ -1865,7 +1865,7 @@ QTableView::indicator:indeterminate:pressed,
|
||||
QColumnView::indicator:indeterminate:hover,
|
||||
QColumnView::indicator:indeterminate:focus,
|
||||
QColumnView::indicator:indeterminate:pressed {
|
||||
image: url(":/rc/checkbox_indeterminate_focus.png");
|
||||
image: url(":/dark/checkbox_indeterminate_focus.png");
|
||||
}
|
||||
|
||||
QTreeView,
|
||||
@ -2006,7 +2006,7 @@ QHeaderView::down-arrow {
|
||||
width: 12px;
|
||||
padding-left: 2px;
|
||||
padding-right: 2px;
|
||||
image: url(":/rc/arrow_down.png");
|
||||
image: url(":/dark/arrow_down.png");
|
||||
}
|
||||
|
||||
QHeaderView::up-arrow {
|
||||
@ -2016,7 +2016,7 @@ QHeaderView::up-arrow {
|
||||
width: 12px;
|
||||
padding-left: 2px;
|
||||
padding-right: 2px;
|
||||
image: url(":/rc/arrow_up.png");
|
||||
image: url(":/dark/arrow_up.png");
|
||||
}
|
||||
|
||||
/* QToolBox --------------------------------------------------------------
|
||||
@ -2137,12 +2137,12 @@ QSplitter::handle:hover {
|
||||
|
||||
QSplitter::handle:horizontal {
|
||||
width: 5px;
|
||||
image: url(":/rc/line_vertical.png");
|
||||
image: url(":/dark/line_vertical.png");
|
||||
}
|
||||
|
||||
QSplitter::handle:vertical {
|
||||
height: 5px;
|
||||
image: url(":/rc/line_horizontal.png");
|
||||
image: url(":/dark/line_horizontal.png");
|
||||
}
|
||||
|
||||
/* QDateEdit, QDateTimeEdit -----------------------------------------------
|
||||
@ -2174,13 +2174,13 @@ QDateEdit::drop-down, QDateTimeEdit::drop-down {
|
||||
}
|
||||
|
||||
QDateEdit::down-arrow, QDateTimeEdit::down-arrow {
|
||||
image: url(":/rc/arrow_down_disabled.png");
|
||||
image: url(":/dark/arrow_down_disabled.png");
|
||||
height: 8px;
|
||||
width: 8px;
|
||||
}
|
||||
|
||||
QDateEdit::down-arrow:on, QDateEdit::down-arrow:hover, QDateEdit::down-arrow:focus, QDateTimeEdit::down-arrow:on, QDateTimeEdit::down-arrow:hover, QDateTimeEdit::down-arrow:focus {
|
||||
image: url(":/rc/arrow_down.png");
|
||||
image: url(":/dark/arrow_down.png");
|
||||
}
|
||||
|
||||
QDateEdit QAbstractItemView, QDateTimeEdit QAbstractItemView {
|
Before Width: | Height: | Size: 522 B After Width: | Height: | Size: 522 B |
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 546 B After Width: | Height: | Size: 546 B |
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 523 B After Width: | Height: | Size: 523 B |
Before Width: | Height: | Size: 992 B After Width: | Height: | Size: 992 B |
Before Width: | Height: | Size: 567 B After Width: | Height: | Size: 567 B |
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 558 B After Width: | Height: | Size: 558 B |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 557 B After Width: | Height: | Size: 557 B |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 551 B After Width: | Height: | Size: 551 B |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 574 B After Width: | Height: | Size: 574 B |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 546 B After Width: | Height: | Size: 546 B |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 545 B After Width: | Height: | Size: 545 B |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 541 B After Width: | Height: | Size: 541 B |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 574 B After Width: | Height: | Size: 574 B |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 525 B After Width: | Height: | Size: 525 B |
Before Width: | Height: | Size: 1008 B After Width: | Height: | Size: 1008 B |
Before Width: | Height: | Size: 549 B After Width: | Height: | Size: 549 B |
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 532 B After Width: | Height: | Size: 532 B |
Before Width: | Height: | Size: 990 B After Width: | Height: | Size: 990 B |
Before Width: | Height: | Size: 554 B After Width: | Height: | Size: 554 B |
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 3.2 KiB |
Before Width: | Height: | Size: 397 B After Width: | Height: | Size: 397 B |
Before Width: | Height: | Size: 824 B After Width: | Height: | Size: 824 B |
Before Width: | Height: | Size: 426 B After Width: | Height: | Size: 426 B |
Before Width: | Height: | Size: 862 B After Width: | Height: | Size: 862 B |
Before Width: | Height: | Size: 395 B After Width: | Height: | Size: 395 B |
Before Width: | Height: | Size: 810 B After Width: | Height: | Size: 810 B |
Before Width: | Height: | Size: 415 B After Width: | Height: | Size: 415 B |
Before Width: | Height: | Size: 867 B After Width: | Height: | Size: 867 B |
Before Width: | Height: | Size: 151 B After Width: | Height: | Size: 151 B |
Before Width: | Height: | Size: 205 B After Width: | Height: | Size: 205 B |
Before Width: | Height: | Size: 152 B After Width: | Height: | Size: 152 B |
Before Width: | Height: | Size: 205 B After Width: | Height: | Size: 205 B |
Before Width: | Height: | Size: 149 B After Width: | Height: | Size: 149 B |
Before Width: | Height: | Size: 203 B After Width: | Height: | Size: 203 B |
Before Width: | Height: | Size: 152 B After Width: | Height: | Size: 152 B |
Before Width: | Height: | Size: 204 B After Width: | Height: | Size: 204 B |
Before Width: | Height: | Size: 133 B After Width: | Height: | Size: 133 B |
Before Width: | Height: | Size: 238 B After Width: | Height: | Size: 238 B |
Before Width: | Height: | Size: 135 B After Width: | Height: | Size: 135 B |
Before Width: | Height: | Size: 240 B After Width: | Height: | Size: 240 B |
Before Width: | Height: | Size: 134 B After Width: | Height: | Size: 134 B |
Before Width: | Height: | Size: 238 B After Width: | Height: | Size: 238 B |
Before Width: | Height: | Size: 135 B After Width: | Height: | Size: 135 B |
Before Width: | Height: | Size: 239 B After Width: | Height: | Size: 239 B |
Before Width: | Height: | Size: 166 B After Width: | Height: | Size: 166 B |
Before Width: | Height: | Size: 260 B After Width: | Height: | Size: 260 B |
Before Width: | Height: | Size: 167 B After Width: | Height: | Size: 167 B |
Before Width: | Height: | Size: 263 B After Width: | Height: | Size: 263 B |
Before Width: | Height: | Size: 164 B After Width: | Height: | Size: 164 B |
Before Width: | Height: | Size: 260 B After Width: | Height: | Size: 260 B |
Before Width: | Height: | Size: 161 B After Width: | Height: | Size: 161 B |
Before Width: | Height: | Size: 262 B After Width: | Height: | Size: 262 B |
Before Width: | Height: | Size: 404 B After Width: | Height: | Size: 404 B |
Before Width: | Height: | Size: 813 B After Width: | Height: | Size: 813 B |
Before Width: | Height: | Size: 422 B After Width: | Height: | Size: 422 B |
Before Width: | Height: | Size: 872 B After Width: | Height: | Size: 872 B |
Before Width: | Height: | Size: 396 B After Width: | Height: | Size: 396 B |
Before Width: | Height: | Size: 791 B After Width: | Height: | Size: 791 B |
Before Width: | Height: | Size: 421 B After Width: | Height: | Size: 421 B |
Before Width: | Height: | Size: 860 B After Width: | Height: | Size: 860 B |
Before Width: | Height: | Size: 650 B After Width: | Height: | Size: 650 B |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 731 B After Width: | Height: | Size: 731 B |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 655 B After Width: | Height: | Size: 655 B |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 704 B After Width: | Height: | Size: 704 B |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 476 B After Width: | Height: | Size: 476 B |
Before Width: | Height: | Size: 955 B After Width: | Height: | Size: 955 B |
Before Width: | Height: | Size: 545 B After Width: | Height: | Size: 545 B |
Before Width: | Height: | Size: 1003 B After Width: | Height: | Size: 1003 B |
Before Width: | Height: | Size: 466 B After Width: | Height: | Size: 466 B |
Before Width: | Height: | Size: 930 B After Width: | Height: | Size: 930 B |
Before Width: | Height: | Size: 518 B After Width: | Height: | Size: 518 B |
Before Width: | Height: | Size: 995 B After Width: | Height: | Size: 995 B |