Xnview MP Dark UI Enhancement
Moderators: XnTriq, helmut, xnview
-
- Posts: 170
- Joined: Tue May 22, 2012 5:42 pm
- Location: Malayan jungle
Re: Xnview MP Dark UI Enhancement
well I figured how to turn off the preview in the info pane so that solves it for me.
Build Debian http://dquinton.github.io/debian-install/
-
- Moderator & Librarian
- Posts: 6387
- Joined: Sun Sep 25, 2005 3:00 am
- Location: Ref Desk
Re: Xnview MP Dark UI Enhancement
Tools » Settings... » Browser » Preview background colororbspider wrote:I found it searching the same problem as noted (and somehow solved) by arabtornado, how to change backgd color of PREVIEW panel
[...]
but not Preview bkgd, correct? So how do I do it, as my dark themes is looking good.
The following INI entry only works in XnView v1.9:orbspider wrote:Another thing, how to change the selected thumbnail having blue-white box around it and the selected thumbnail label dark blue? I'd like to make them just maybe lighter grey. If that's Qt style sheet then where do I find those in Linux Debian?
There's a similar entry in the xnview.ini of XnViewMP v0.53 (Wndows), …XnView Wiki (UI-less Settings » [url=http://www.xnview.com/wiki/index.php/UI-less_Settings#Browser]Browser[/url]) wrote:
SelBorderColor
- Changes the color of the selection frame around the selected thumbnail.
Value: Raw color (integer) or formatted color string
See also FolderColor# settings
Code: Select all
[Appearance]
selectedColor=10 36 106
orbspider wrote:Also, how do I change the white 1px line to left of each pane, as arabtornado doesn't have them?
Code: Select all
MyThumbListView,
QTreeView {
border: 1px solid black;
}
-
- Posts: 170
- Joined: Tue May 22, 2012 5:42 pm
- Location: Malayan jungle
Re: Xnview MP Dark UI Enhancement
Hi thanks for the help!
I have this in my css
and lower down:
but originally it was
but both give white vertical lines at dividers, left side
I have this in my css
Code: Select all
QTreeView#UIGroup_TreeView QHeaderView::section:first{
border-left: 1px solid black;
}
Code: Select all
QTreeView{
background-color: rgb(20, 20, 20);
alternate-background-color: rgb(40, 40, 40);
border: 0px groove rgb(70, 70, 70);
}
Code: Select all
QTreeView{
background-color: rgb(20, 20, 20);
alternate-background-color: rgb(40, 40, 40);
border: 1px solid black;
}
Build Debian http://dquinton.github.io/debian-install/
-
- Moderator & Librarian
- Posts: 6387
- Joined: Sun Sep 25, 2005 3:00 am
- Location: Ref Desk
Re: Xnview MP Dark UI Enhancement
Forget about MyThumbListView & QTreeView! This oughta do the trick:orbspider wrote:[...] but both give white vertical lines at dividers, left side
Qt Reference Ducumentation (Qt Style Sheets Examples » [url=http://doc.qt.digia.com/stable/stylesheet-examples.html#customizing-qmainwindow]Customizing QMainWindow[/url]) wrote:The separator of a QMainWindow can be styled as follows:
Code: Select all
QMainWindow::separator { background: yellow; width: 10px; /* when vertical */ height: 10px; /* when horizontal */ } QMainWindow::separator:hover { background: red; }
-
- Posts: 170
- Joined: Tue May 22, 2012 5:42 pm
- Location: Malayan jungle
Re: Xnview MP Dark UI Enhancement
hey that's it, well not the yellow but that's the one to adjust (grey and 2px for me)
It's good to have a librarian around!
just one more, when Tree tabs are vertical there's a white line from them all the way down!
It's good to have a librarian around!
just one more, when Tree tabs are vertical there's a white line from them all the way down!
Build Debian http://dquinton.github.io/debian-install/
-
- Moderator & Librarian
- Posts: 6387
- Joined: Sun Sep 25, 2005 3:00 am
- Location: Ref Desk
Re: Xnview MP Dark UI Enhancement
Yep, we're the unsung heroesorbspider wrote:It's good to have a librarian around!
This one remains a complete mystery to meorbspider ([url=http://newsgroup.xnview.com/viewtopic.php?p=89171#p89171]Qt Stylesheet Snippet Repository[/url]) wrote:just one more, when Tree tabs are vertical there's a white line from them all the way down!
JohnFredC ([url=http://newsgroup.xnview.com/viewtopic.php?p=89171#p89171]Qt Stylesheet Snippet Repository[/url]) wrote:Unfortunately, none of those affect the line arrowed in the following image:
-
- Posts: 170
- Joined: Tue May 22, 2012 5:42 pm
- Location: Malayan jungle
Re: Xnview MP Dark UI Enhancement
perhaps its part of the Tabs widget that would get drawn under tabs but their giff image covers it.
oh well! cheers
oh well! cheers
Last edited by orbspider on Sun Mar 03, 2013 1:04 pm, edited 1 time in total.
Build Debian http://dquinton.github.io/debian-install/
-
- Moderator & Librarian
- Posts: 6387
- Joined: Sun Sep 25, 2005 3:00 am
- Location: Ref Desk
Re: Xnview MP Dark UI Enhancement
So far, I've tried these properties/pseudo-states/subcontrols:orbspider wrote:perhaps its part of the Tabs widget that would get drawn under tabs but their giff image covers it.
- QTabWidget
- QTabWidget::pane
QTabWidget::tab-bar
- QTabBar::tab
- QTabBar::tab:first
QTabBar::tab:middle
QTabBar::tab:last
- QTabBar::RoundedNorth=0
QTabBar::RoundedSouth=1
QTabBar[shape="1"]::tab
QTabBar[shape="2"]::tab - QTabBar::tab:first
- MyTabWidget::pane
MyTabWidget::tab-bar
- MyTabBar::tab
- QTabWidget::pane
-
- Moderator & Librarian
- Posts: 6387
- Joined: Sun Sep 25, 2005 3:00 am
- Location: Ref Desk
Re: Xnview MP Dark UI Enhancement
@Pierre: Can you make the border “styleable” by setting QTabBar::drawBase() to false?
- Stack Overflow
- Qt-interest
-
- Author of XnView
- Posts: 44883
- Joined: Mon Oct 13, 2003 7:31 am
- Location: France
Re: Xnview MP Dark UI Enhancement
The QTabBar for tree view?XnTriq wrote:@Pierre: Can you make the border “styleable” by setting QTabBar::drawBase() to false?
Pierre.
-
- Moderator & Librarian
- Posts: 6387
- Joined: Sun Sep 25, 2005 3:00 am
- Location: Ref Desk
Re: Xnview MP Dark UI Enhancement
Yes. John's screenshot:xnview wrote:The QTabBar for tree view?XnTriq wrote:@Pierre: Can you make the border “styleable” by setting QTabBar::drawBase() to false?
And this is the discussion on Stack Overflow I'm referring to:JohnFredC ([url=http://newsgroup.xnview.com/viewtopic.php?p=89171#p89171]Qt Stylesheet Snippet Repository[/url]) wrote:Unfortunately, none of those affect the line arrowed in the following image:
Qt: hiding bottom line in QTabBar wrote:Allur wrote:It seems like no possible to set stylesheet for bottom line QTabBar.
I need remove bottom line:
Please, help!hus787 wrote:Haven't used Qt in 6-7 months now so I'm not sure if this will work nor can I test it. Give QTabBar::drawBase a try. Plus the Qt library are very well documents so you should find a solution to your problems if you just carefully sift through it.
Hope you are using the Qt SDK.Allur wrote:Thank you! It works.
-
- Author of XnView
- Posts: 44883
- Joined: Mon Oct 13, 2003 7:31 am
- Location: France
-
- Posts: 5
- Joined: Thu Apr 11, 2013 8:23 am
Re: Xnview MP Dark UI Enhancement
How to make the color of the number 1 is the same as the color of number 2?
http://img402.imageshack.us/img402/5525/ghl.png
http://img402.imageshack.us/img402/5525/ghl.png
-
- Moderator & Librarian
- Posts: 6387
- Joined: Sun Sep 25, 2005 3:00 am
- Location: Ref Desk
Re: Xnview MP Dark UI Enhancement
Changing the background color of the thumbnail panel (Tools » Settings... » Browser » Thumbnail » Appearance » Thumbnail cell » Appearance » Background) doesn't take immediate effect behind/under the foldersEvil_D wrote:How to make the color of the number 1 is the same as the color of number 2?
http://img402.imageshack.us/img402/5525/ghl.png
As a workaround, you can force MP to redraw the folder thumbnails by changing the thumbnail size (View » Thumbnail size...).
-
- Posts: 8705
- Joined: Sun Oct 12, 2003 6:47 pm
- Location: Frankfurt, Germany
Re: Xnview MP Dark UI Enhancement
In Batch processing of XnView MP with dark theme the labels and parameters are very hard to read:
(Tested with XnView MP 0.61 on Windows XP SP3)You do not have the required permissions to view the files attached to this post.