mirror of https://github.com/Nheko-Reborn/nheko
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
882 B
48 lines
882 B
5 years ago
|
import QtQuick 2.6
|
||
|
import com.github.nheko 1.0
|
||
|
|
||
|
DelegateChooser {
|
||
5 years ago
|
//role: "type" //< not supported in our custom implementation, have to use roleValue
|
||
5 years ago
|
roleValue: model.type
|
||
|
|
||
|
DelegateChoice {
|
||
|
roleValue: MtxEvent.TextMessage
|
||
5 years ago
|
TextMessage {}
|
||
5 years ago
|
}
|
||
|
DelegateChoice {
|
||
|
roleValue: MtxEvent.NoticeMessage
|
||
5 years ago
|
NoticeMessage {}
|
||
5 years ago
|
}
|
||
|
DelegateChoice {
|
||
|
roleValue: MtxEvent.EmoteMessage
|
||
5 years ago
|
TextMessage {}
|
||
5 years ago
|
}
|
||
|
DelegateChoice {
|
||
|
roleValue: MtxEvent.ImageMessage
|
||
5 years ago
|
ImageMessage {}
|
||
5 years ago
|
}
|
||
|
DelegateChoice {
|
||
|
roleValue: MtxEvent.Sticker
|
||
5 years ago
|
ImageMessage {}
|
||
5 years ago
|
}
|
||
|
DelegateChoice {
|
||
|
roleValue: MtxEvent.FileMessage
|
||
5 years ago
|
FileMessage {}
|
||
5 years ago
|
}
|
||
|
DelegateChoice {
|
||
|
roleValue: MtxEvent.VideoMessage
|
||
5 years ago
|
PlayableMediaMessage {}
|
||
5 years ago
|
}
|
||
|
DelegateChoice {
|
||
|
roleValue: MtxEvent.AudioMessage
|
||
5 years ago
|
PlayableMediaMessage {}
|
||
5 years ago
|
}
|
||
|
DelegateChoice {
|
||
|
roleValue: MtxEvent.Redacted
|
||
5 years ago
|
Redacted {}
|
||
5 years ago
|
}
|
||
|
DelegateChoice {
|
||
5 years ago
|
Placeholder {}
|
||
5 years ago
|
}
|
||
|
}
|