Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | IconButton based on AbstractButton | Christian Mollekopf | 2017-07-25 |
| | |||
* | TextButton based on AbstractButton | Christian Mollekopf | 2017-07-25 |
| | |||
* | Standardized focus highlighting via AbstractButton for PositiveButton | Christian Mollekopf | 2017-07-25 |
| | | | | and Button | ||
* | Fixed IconButton focus highlighting | Christian Mollekopf | 2017-07-25 |
| | |||
* | Use the TextButton | Christian Mollekopf | 2017-07-24 |
| | |||
* | Keyboard focus handling | Christian Mollekopf | 2017-07-23 |
| | |||
* | TextEditor escaping | Christian Mollekopf | 2017-07-23 |
| | |||
* | Use a TextButton instead | Christian Mollekopf | 2017-07-23 |
| | |||
* | Move focus to text editor by default, and forward to next item on esc | Christian Mollekopf | 2017-07-23 |
| | | | | ...since we support tabs in the text editor. | ||
* | Avoid warnings for undefined | Christian Mollekopf | 2017-07-23 |
| | |||
* | Don't display "Error" when initially disconnected. | Christian Mollekopf | 2017-07-23 |
| | |||
* | ModelIndexRetriever to abuse Repeater less publicly | Christian Mollekopf | 2017-07-22 |
| | | | | | Simliar to Retriever, but we'd have to alias all properties/roles automatically somehow. | ||
* | Use the visualFocus property instaed of activeFocus | Christian Mollekopf | 2017-07-22 |
| | | | | The activeFocus remains after clicking an element. | ||
* | No more hardcoded colors | Christian Mollekopf | 2017-07-22 |
| | |||
* | Named all colors | Christian Mollekopf | 2017-07-22 |
| | |||
* | Housekeeping: Avatar.qml and FocusComposer.qml are no longer used | Christian Mollekopf | 2017-07-21 |
| | |||
* | GridView based people view. | Christian Mollekopf | 2017-07-21 |
| | | | | This enables keyboard navigation. | ||
* | Use an AbstractButton in People.qml for the delegate | Christian Mollekopf | 2017-07-21 |
| | | | | | | | Using Kube.Button currently crashes, due to the font.underline assignment in the contentItem (although it is replaced in People.qml). It seems the grouped property is somehow executed after the original content item was already destroyed, resulting in a SEGFAULT. | ||
* | People focus handling | Christian Mollekopf | 2017-07-21 |
| | |||
* | Use a Button for the Addressbook delegate. | Christian Mollekopf | 2017-07-21 |
| | | | | This makes it keyboard selectable. | ||
* | Use activeFocus | Christian Mollekopf | 2017-07-21 |
| | |||
* | Editor focus | Christian Mollekopf | 2017-07-21 |
| | |||
* | Make every view a focus scope | Christian Mollekopf | 2017-07-21 |
| | |||
* | Missing id | Christian Mollekopf | 2017-07-21 |
| | |||
* | Use activeFocus for detecting focus | Christian Mollekopf | 2017-07-21 |
| | |||
* | Return pressed & activeFocus | Christian Mollekopf | 2017-07-21 |
| | |||
* | Support key presses on buttons | Christian Mollekopf | 2017-07-21 |
| | |||
* | Show highlight on active focus | Christian Mollekopf | 2017-07-21 |
| | |||
* | Fixed mailview focus handling | Christian Mollekopf | 2017-07-21 |
| | |||
* | Underline in maillistview as well | Christian Mollekopf | 2017-07-21 |
| | |||
* | The TreeView needs to be a FocusScope for the focus to work at all. | Christian Mollekopf | 2017-07-21 |
| | |||
* | Show activeFocus via underline | Christian Mollekopf | 2017-07-21 |
| | |||
* | Underline on active focus | Christian Mollekopf | 2017-07-21 |
| | |||
* | Improved keyboard navigation | Christian Mollekopf | 2017-07-21 |
| | |||
* | Simplified layout | Christian Mollekopf | 2017-07-20 |
| | |||
* | Improved key-navigation for treeview | Christian Mollekopf | 2017-07-20 |
| | |||
* | Anchor the treeview properly | Christian Mollekopf | 2017-07-19 |
| | |||
* | qsTr all the strings | Michael Bohlender | 2017-07-19 |
| | |||
* | make more translatable | Michael Bohlender | 2017-07-19 |
| | |||
* | make it translateable | Michael Bohlender | 2017-07-19 |
| | |||
* | initial Kube.ToolTip | Michael Bohlender | 2017-07-18 |
| | |||
* | Removed unncessary Item and fixed indentation | Christian Mollekopf | 2017-07-16 |
| | |||
* | Properly anchor and scroll the person page | Christian Mollekopf | 2017-07-15 |
| | |||
* | Properly anchor and scroll the peopleview | Christian Mollekopf | 2017-07-15 |
| | |||
* | Put the TreeView into an extra flickable | Christian Mollekopf | 2017-07-15 |
| | | | | | | | | | | ...so it becomes scrollable just like the rest. Because the TreeView derives from ScrollView we can't just use the regular approach of making the flickable suck less at scrolling. Instead we expand the treeview to maximum length and wrap it in an extra Flickable that we can then handle with the ScrollHelper. This results in the treeview to have the same scrolling behvaiour as everything else. | ||
* | Fixups | Christian Mollekopf | 2017-07-15 |
| | |||
* | Moved non-folder specific treeview to separate file | Christian Mollekopf | 2017-07-15 |
| | |||
* | Fixed scroll even forwarding with a webview | Christian Mollekopf | 2017-07-15 |
| | |||
* | A scrollable texteditor | Christian Mollekopf | 2017-07-15 |
| | |||
* | Use a ScrollHelper to fix scrolling on listviews | Christian Mollekopf | 2017-07-15 |
| | | | | | | | | | | Because the standard scrolling is so unusable depending on the input device we replace it by something custom that is fairly similar to what QQC1 ScrollView did. Using a ScrollView sucks in many ways, including that you have to wrap all sorts of things which is just code wise not great at all. The ScrollHelper can instead be attached to any existing flickable to override it's scrolling behaviour, so we can also silently drop it once the default flickable behaviour starts to make sense. |