| Summary: | wish: simplify toolbars in the default setup | ||
|---|---|---|---|
| Product: | [Applications] ktimetracker | Reporter: | Diederik van der Boor <vdboor> |
| Component: | general | Assignee: | Thorsten Staerk <dev> |
| Status: | RESOLVED FIXED | ||
| Severity: | wishlist | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | unspecified | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
| Attachments: |
The default of KTimeTracker as it exists today
Suggested layout of the toolbars, to use as new default |
||
|
Description
Diederik van der Boor
2009-01-29 16:11:41 UTC
Created attachment 30710 [details]
The default of KTimeTracker as it exists today
Created attachment 30711 [details]
Suggested layout of the toolbars, to use as new default
I like it, especially the word "bewerken" which sounds funny for a german speaker! I would only do this if at the same time it will be possible again to have several ktimetracker instances open. I just wanted to implement it for an internet tablet where you do not have a mouse, but a touchscreen. Tooltips are tedious there - it is hard to move the mouse pointer over an icon. How did you implement this? Thanks! > How did you implement this? Thanks!
I just configured the toolbars from the GUI, to show "icons next to text" and I removed some actions from the toolbar. So I guess this should also be possible in the code.
To reproduce: 1. start ktimetracker 2. right-click on a toolbar 3. select Text position -> Text alongside icons I tried to do this in qt designer, but it is so simple. I did not know this is possible... with my program. Here is it in code form, I just submitted it to qtimetracker.
Index: /root/nokia/ktimetracker/ktimetracker/mainwindow.ui
===================================================================
--- /root/nokia/ktimetracker/ktimetracker/mainwindow.ui (revision 16)
+++ /root/nokia/ktimetracker/ktimetracker/mainwindow.ui (working copy)
@@ -75,6 +75,9 @@
<property name="movable">
<bool>false</bool>
</property>
+ <property name="toolButtonStyle">
+ <enum>Qt::ToolButtonTextBesideIcon</enum>
+ </property>
<property name="floatable">
<bool>false</bool>
</property>
SVN commit 1069207 by tstaerk: Show a description next to the toolbar items. That is especially important if you have an internet table, i.e. a computer without a mouse but with a touchscreen. BUGS:182312 M +3 -0 mainwindow.ui WebSVN link: http://websvn.kde.org/?view=rev&revision=1069207 |