status-qml/sandbox
Pascal Precht b40d427d88 feat(Components): introduce StatusChatListItem
This introduces the brand new `StatusChatListItem` which can be used
to render channels, one-to-one chats and community channels in Status
applications.

The component can be used as follows:

```qml
import Status.Components 0.1

StatusChatListItem {
    name: "channel-name" // name of channel or user
    type: StatusChatListItem.Type.PublicChat // GroupChat | CommunityChat | OneToOneChat
    image.source: "profile/image/source" // uses letter identicon instead of not supplied
    hasUnreadMessages: true // default `false`
    badge.value: 1 // default `0`
    muted: true // `default `false`
    selected: true // default `false`

    onUnmute: ... // signal when unmute icon is clicked
}
```

Closes #65
2021-05-26 10:22:59 +02:00
..
Buttons.qml refactor(Controls): make use of newly introduced StatusIconSettings in button controls 2021-05-25 14:10:56 +02:00
Controls.qml feat(StatusIconTabButton): introduce image loading state and fallback 2021-05-21 10:17:53 +02:00
Icons.qml feat: Set up catalog app (sandbox) 2021-05-05 07:55:43 +02:00
Layout.qml refactor(sandbox): rely on global `Theme` instead of theme prop 2021-05-21 10:14:03 +02:00
ListItems.qml feat(Components): introduce StatusChatListItem 2021-05-26 10:22:59 +02:00
Others.qml feat(Components): introduce `StatusRoundIcon` component 2021-05-25 12:23:47 +02:00
handler.cpp feat: Set up catalog app (sandbox) 2021-05-05 07:55:43 +02:00
handler.h feat: Set up catalog app (sandbox) 2021-05-05 07:55:43 +02:00
main.cpp feat: Set up catalog app (sandbox) 2021-05-05 07:55:43 +02:00
main.qml feat(Components): introduce `StatusListItem` component 2021-05-25 13:52:25 +02:00
qml.qrc feat:Add buttons components 2021-05-19 10:43:14 +02:00
sandbox.pro chore: add StatusCheckBox 2021-05-20 11:17:52 +02:00
sandboxapp.cpp fix: fix crash on removing title bar 2021-05-20 10:48:51 +02:00
sandboxapp.h fix: fix crash on removing title bar 2021-05-20 10:48:51 +02:00
statuswindow.h fix: fix crash on removing title bar 2021-05-20 10:48:51 +02:00
statuswindow_mac.mm fix: fix crash on removing title bar 2021-05-20 10:48:51 +02:00