EmojiInputDialog.gml 663 B

1234567891011121314151617181920212223242526272829303132
  1. @GUI::Frame {
  2. shape: "Window"
  3. fill_with_background_color: true
  4. layout: @GUI::VerticalBoxLayout {
  5. margins: [4]
  6. }
  7. @GUI::TextBox {
  8. name: "search_box"
  9. placeholder: "Search emoji"
  10. fixed_height: 22
  11. }
  12. @GUI::ToolbarContainer {
  13. @GUI::Toolbar {
  14. name: "toolbar"
  15. @GUI::Label {
  16. text: "Category: "
  17. autosize: true
  18. }
  19. }
  20. }
  21. @GUI::ScrollableContainerWidget {
  22. name: "scrollable_container"
  23. content_widget: @GUI::Widget {
  24. name: "emojis"
  25. layout: @GUI::VerticalBoxLayout {}
  26. }
  27. }
  28. }