FileCreationPopover.vala 340 B

123456789101112131415161718192021
  1. using Adw;
  2. using Gtk;
  3. namespace Publicate {
  4. public class FileCreationPopover : Popover {
  5. private ViewerWindow toplevel;
  6. public FileCreationPopover(ViewerWindow window) {
  7. toplevel = window;
  8. var box = new Box(Orientation.VERTICAL, 8);
  9. child = box;
  10. }
  11. }
  12. }