Default stylesheets revision + clean-up (#13772)
* Added the new QSS file with images Added the new QSS file with images * fixed some disabled colors to be the same everywhere. * update * big update fixed the scrollbars and lots more. * small tweaks * small fixes * fixed groupbox in qsint * Added light classic This light theme is basicallyt exactly no-stylesheet. * fixed the tabs * fixed background reportview * updated overlay stylesheets * Added preference settings from Opentheme @obelisk79 * tabbar tweaks * forgot the gradients on dark * Overlay stylesheets clean-up +move icon to folder. * removing old stylesheets removing old stylesheets * it was icons not icon, fixed it. * updated cmake and package.xml * to many spaces * removing old theme's * updated default overlay qss * removed my settings files * updated cfg files * Bunch of fixes I compiled it and didn't see any issues anymore. Could be some discussions about the new startpage thumbnails. * fixed up double arrows and the correct logo! * updated the work file for the icons * Sets no-stylesheet overlay to a stylesheet. * type in cmakelist * type in filename * oeps did set the dark theme * Update OverlayManager.cpp I removed a bit to much reverting this line * fixed text color issue in Qsint on the light theme and dark background * Update Light Theme + Dark Background.qss Fine tuning the treeview it now works good for ligth theme and dark brackgrounds. * removed prodark added back Behave dark overlay @Syres916 I deleted the overlay qss behave dark by accident. But you might want to check this PR out since it changes a lot. I deleted Pro-dark since it was not updated and is outdated and it looks also a lot like the default dark. * Update Light Theme + Light Background.qss Fixes * small fixes small fixes * remove ProDark * Update CMakeLists.txt * changed the thumbnails Also removed teh dimensions in the filename since that got annoying real fast :) * Updated other overlay stylesheets * missing extension * cleanup and some fixes to the overlay. * Update Dark Theme + Light Background.qss udpated the dark theme overaly with light background for all you maniacs who use this. * Title bar fix for windows This makes it so that it uses black title bar in windows if you have dark mode * updated white background and some colors * I think I fix merge issue now. * Some cleanup on the thumbnails * Create CMakePresets.json * idk * trying to fix conflicts * removing old themes * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Some fixes for Qsint sketcher toolbars icons * fixed merge issue with maingui * trying to fix merge conflicts * and removing again. --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
This commit is contained in:
@@ -926,7 +926,7 @@ void StdCmdToggleTransparency::activated(int iMsg)
|
||||
if (!obj)
|
||||
continue;
|
||||
|
||||
bool isGroup = dynamic_cast<App::Part*>(obj)
|
||||
bool isGroup = dynamic_cast<App::Part*>(obj)
|
||||
|| dynamic_cast<App::LinkGroup*>(obj)
|
||||
|| dynamic_cast<App::DocumentObjectGroup*>(obj);
|
||||
|
||||
@@ -2605,9 +2605,9 @@ private:
|
||||
bool prevSelectionEn;
|
||||
|
||||
public:
|
||||
// Creates a selection handler used to implement the common behaviour of BoxZoom, BoxSelection and BoxElementSelection.
|
||||
// Creates a selection handler used to implement the common behaviour of BoxZoom, BoxSelection and BoxElementSelection.
|
||||
// Takes the viewer, a selection mode, a cursor, a function pointer to be called on success and a void pointer for user data to be passed to the given function.
|
||||
// The selection handler class stores all necessary previous states, registers a event callback and starts the selection in the given mode.
|
||||
// The selection handler class stores all necessary previous states, registers a event callback and starts the selection in the given mode.
|
||||
// If there is still a selection handler active, this call will generate a message and returns.
|
||||
static void Create(View3DInventorViewer* viewer, View3DInventorViewer::SelectionMode selectionMode,
|
||||
const QCursor& cursor, FnCb doFunction= nullptr, void* ud=nullptr)
|
||||
@@ -2637,8 +2637,8 @@ public:
|
||||
return userData;
|
||||
}
|
||||
|
||||
// Implements the event handler. In the normal case the provided function is called.
|
||||
// Also supports aborting the selection mode by pressing (releasing) the Escape key.
|
||||
// Implements the event handler. In the normal case the provided function is called.
|
||||
// Also supports aborting the selection mode by pressing (releasing) the Escape key.
|
||||
static void selectionCallback(void * ud, SoEventCallback * n)
|
||||
{
|
||||
auto selectionHandler = static_cast<SelectionCallbackHandler*>(ud);
|
||||
@@ -3708,7 +3708,7 @@ StdCmdDockOverlayAll::StdCmdDockOverlayAll()
|
||||
|
||||
void StdCmdDockOverlayAll::activated(int iMsg)
|
||||
{
|
||||
Q_UNUSED(iMsg);
|
||||
Q_UNUSED(iMsg);
|
||||
OverlayManager::instance()->setOverlayMode(OverlayManager::OverlayMode::ToggleAll);
|
||||
}
|
||||
|
||||
@@ -3733,7 +3733,7 @@ StdCmdDockOverlayTransparentAll::StdCmdDockOverlayTransparentAll()
|
||||
|
||||
void StdCmdDockOverlayTransparentAll::activated(int iMsg)
|
||||
{
|
||||
Q_UNUSED(iMsg);
|
||||
Q_UNUSED(iMsg);
|
||||
OverlayManager::instance()->setOverlayMode(OverlayManager::OverlayMode::ToggleTransparentAll);
|
||||
}
|
||||
|
||||
@@ -3757,7 +3757,7 @@ StdCmdDockOverlayToggle::StdCmdDockOverlayToggle()
|
||||
|
||||
void StdCmdDockOverlayToggle::activated(int iMsg)
|
||||
{
|
||||
Q_UNUSED(iMsg);
|
||||
Q_UNUSED(iMsg);
|
||||
OverlayManager::instance()->setOverlayMode(OverlayManager::OverlayMode::ToggleActive);
|
||||
}
|
||||
|
||||
@@ -3782,7 +3782,7 @@ StdCmdDockOverlayToggleTransparent::StdCmdDockOverlayToggleTransparent()
|
||||
|
||||
void StdCmdDockOverlayToggleTransparent::activated(int iMsg)
|
||||
{
|
||||
Q_UNUSED(iMsg);
|
||||
Q_UNUSED(iMsg);
|
||||
OverlayManager::instance()->setOverlayMode(OverlayManager::OverlayMode::ToggleTransparent);
|
||||
}
|
||||
|
||||
@@ -3801,13 +3801,13 @@ StdCmdDockOverlayToggleLeft::StdCmdDockOverlayToggleLeft()
|
||||
sWhatsThis = "Std_DockOverlayToggleLeft";
|
||||
sStatusTip = sToolTipText;
|
||||
sAccel = "Ctrl+Left";
|
||||
sPixmap = "qss:overlay/close.svg";
|
||||
sPixmap = "qss:overlay/icons/close.svg";
|
||||
eType = 0;
|
||||
}
|
||||
|
||||
void StdCmdDockOverlayToggleLeft::activated(int iMsg)
|
||||
{
|
||||
Q_UNUSED(iMsg);
|
||||
Q_UNUSED(iMsg);
|
||||
OverlayManager::instance()->setOverlayMode(OverlayManager::OverlayMode::ToggleLeft);
|
||||
}
|
||||
|
||||
@@ -3826,13 +3826,13 @@ StdCmdDockOverlayToggleRight::StdCmdDockOverlayToggleRight()
|
||||
sWhatsThis = "Std_DockOverlayToggleRight";
|
||||
sStatusTip = sToolTipText;
|
||||
sAccel = "Ctrl+Right";
|
||||
sPixmap = "qss:overlay/close.svg";
|
||||
sPixmap = "qss:overlay/icons/close.svg";
|
||||
eType = 0;
|
||||
}
|
||||
|
||||
void StdCmdDockOverlayToggleRight::activated(int iMsg)
|
||||
{
|
||||
Q_UNUSED(iMsg);
|
||||
Q_UNUSED(iMsg);
|
||||
OverlayManager::instance()->setOverlayMode(OverlayManager::OverlayMode::ToggleRight);
|
||||
}
|
||||
|
||||
@@ -3851,13 +3851,13 @@ StdCmdDockOverlayToggleTop::StdCmdDockOverlayToggleTop()
|
||||
sWhatsThis = "Std_DockOverlayToggleTop";
|
||||
sStatusTip = sToolTipText;
|
||||
sAccel = "Ctrl+Up";
|
||||
sPixmap = "qss:overlay/close.svg";
|
||||
sPixmap = "qss:overlay/icons/close.svg";
|
||||
eType = 0;
|
||||
}
|
||||
|
||||
void StdCmdDockOverlayToggleTop::activated(int iMsg)
|
||||
{
|
||||
Q_UNUSED(iMsg);
|
||||
Q_UNUSED(iMsg);
|
||||
OverlayManager::instance()->setOverlayMode(OverlayManager::OverlayMode::ToggleTop);
|
||||
}
|
||||
|
||||
@@ -3876,13 +3876,13 @@ StdCmdDockOverlayToggleBottom::StdCmdDockOverlayToggleBottom()
|
||||
sWhatsThis = "Std_DockOverlayToggleBottom";
|
||||
sStatusTip = sToolTipText;
|
||||
sAccel = "Ctrl+Down";
|
||||
sPixmap = "qss:overlay/close.svg";
|
||||
sPixmap = "qss:overlay/icons/close.svg";
|
||||
eType = 0;
|
||||
}
|
||||
|
||||
void StdCmdDockOverlayToggleBottom::activated(int iMsg)
|
||||
{
|
||||
Q_UNUSED(iMsg);
|
||||
Q_UNUSED(iMsg);
|
||||
OverlayManager::instance()->setOverlayMode(OverlayManager::OverlayMode::ToggleBottom);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user