all repos — tint2 @ fb9da655dfb036ef37751f91fb6213e426f5ee22

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

src/tint2conf/theme_view.h (raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef THEME_VIEW
#define THEME_VIEW

#include <gtk/gtk.h>

extern GtkWidget *g_theme_view;
extern GtkListStore *theme_list_store;
enum {
    COL_THEME_FILE = 0,
    COL_THEME_NAME,
    COL_SNAPSHOT,
    COL_WIDTH,
    COL_HEIGHT,
    COL_FORCE_REFRESH,
    NB_COL,
};

GtkWidget *create_view();

void theme_list_append(const gchar *path);

#endif