all repos — tint2 @ 3926a0026cd1087c1ab5880dcf6ecfe3b44d6c16

fork of the tint2 desktop panel for my custom setup - only minimized windows across all desktops for the taskbar

src/tint2conf/mainwin.h (raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#ifndef TINT2CONF_MAINWIN_H
#define TINT2CONF_MAINWIN_H

#include <gtkmm.h>
#include "thumbview.h"

#define VERSION "0.2"


class MainWin : public Gtk::Window
{
public:
  MainWin();
  virtual ~MainWin();

	Thumbview view;
protected:
  //Signal handlers:
  void on_menu_file_new_generic();
  void on_menu_file_quit();
  void on_menu_others();
  void on_menu_about();

  //Child widgets:
  Gtk::VBox m_Box;

  Glib::RefPtr<Gtk::UIManager> m_refUIManager;
  Glib::RefPtr<Gtk::ActionGroup> m_refActionGroup;
  Glib::RefPtr<Gtk::RadioAction> m_refChoiceOne, m_refChoiceTwo;
};

#endif