Qt-interest Archive, June 2007
How to make QSplitter handle visible on Windows?
Message 1 in thread
Hi,
I've just used a QSplitter for the first time. How do I make the splitter's
handle visible? I'm using Qt4.3.0 on Windows 2000, and there's no visible
indication that a splitter is present, except that the mouse pointer changes
when it is over the handle. I would like to give the user an indication
that there is a handle there, especially when there are collapsed widgets in
the splitter.
--
[ signature omitted ]
Message 2 in thread
it's the "standard" style of a windows2000 gui.
look the thunderbird or visual gui, you don't see anyway the splitters.
create a dialog with widget managed by a qsplitter and preview with
different styles.
you'll see qsplitter with different aspcts depending of style selected
for preview.
if you don't like this style, change it.
setstyle on qapplication or use stylesheet to modify just qsplitter
without changing default style for windows 2000.
Doug Spence a écrit :
>Hi,
>
>I've just used a QSplitter for the first time. How do I make the splitter's
>handle visible? I'm using Qt4.3.0 on Windows 2000, and there's no visible
>indication that a splitter is present, except that the mouse pointer changes
>when it is over the handle. I would like to give the user an indication
>that there is a handle there, especially when there are collapsed widgets in
>the splitter.
>
>
>
>
--
[ signature omitted ]
Message 3 in thread
<veronique.lefrere@xxxxxx> wrote in message news:4672C3E5.4030702@xxxxxxxxx
> setstyle on qapplication or use stylesheet to modify just qsplitter
> without changing default style for windows 2000.
Thanks for the tip! What I've done is built an instance of QMotifStyle and
applied it to the QSplitter. That works nicely.
--
[ signature omitted ]