Re: Xnview MP Dark UI Enhancement
Posted: Mon Feb 11, 2013 2:11 pm
well I figured how to turn off the preview in the info pane so that solves it for me. 

Various discussion boards for XnView and related products
https://newsgroup.xnview.com/
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;
}
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;
}
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; }
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:
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.
The QTabBar for tree view?XnTriq wrote:@Pierre: Can you make the border “styleable” by setting QTabBar::drawBase() to false?
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.
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