summaryrefslogtreecommitdiff
path: root/src/gl-window.c
blob: a93cc6757a46fca3297050451bd51c314458acb7 (plain)
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/*
 *  GNOME Logs - View and search logs
 *  Copyright (C) 2013  Red Hat, Inc.
 *
 *  This program is free software: you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation, either version 3 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#include "gl-window.h"

#include <glib/gi18n.h>
#include "libgd/gd.h"

#include "gl-categorylist.h"
#include "gl-eventview.h"

G_DEFINE_TYPE (GlWindow, gl_window, GTK_TYPE_APPLICATION_WINDOW)

static void
gl_window_class_init (GlWindowClass *klass)
{
}

static void
gl_window_init (GlWindow *window)
{
    GtkWidget *grid;
    GtkWidget *toolbar;
    GtkToolItem *item;
    GtkWidget *button;
    GtkWidget *image;
    GtkWidget *scrolled;
    GtkWidget *listbox;
    GtkWidget *label;
    GtkWidget *row;

    grid = gtk_grid_new ();

    toolbar = gd_main_toolbar_new ();
    gtk_widget_set_vexpand (toolbar, FALSE);
    gtk_grid_attach (GTK_GRID (grid), toolbar, 0, 0, 1, 1);

    toolbar = gtk_toolbar_new ();
    gtk_widget_set_vexpand (toolbar, FALSE);
    gtk_grid_attach (GTK_GRID (grid), toolbar, 1, 0, 1, 1);

    item = gtk_separator_tool_item_new ();
    gtk_separator_tool_item_set_draw (GTK_SEPARATOR_TOOL_ITEM (item), FALSE);
    gtk_container_add (GTK_CONTAINER (toolbar), GTK_WIDGET (item));
    gtk_container_child_set (GTK_CONTAINER (toolbar), GTK_WIDGET (item),
                             "expand", TRUE, NULL);

    button = gtk_menu_button_new ();
    image = gtk_image_new_from_icon_name ("emblem-system-symbolic",
                                          GTK_ICON_SIZE_MENU);
    gtk_button_set_image (GTK_BUTTON (button), image);
    item = gtk_tool_item_new ();
    gtk_container_add (GTK_CONTAINER (item), button);
    gtk_container_add (GTK_CONTAINER (toolbar), GTK_WIDGET (item));

    /* Category/group view. */
    listbox = gl_category_list_new ();
    gtk_grid_attach (GTK_GRID (grid), listbox, 0, 1, 1, 1);

    /* Event view. */
    listbox = gl_event_view_new ();

    scrolled = gtk_scrolled_window_new (NULL, NULL);
    gtk_widget_set_hexpand (scrolled, TRUE);
    gtk_widget_set_vexpand (scrolled, TRUE);
    gtk_container_add (GTK_CONTAINER (scrolled), listbox);
    gtk_grid_attach (GTK_GRID (grid), scrolled, 1, 1, 1, 1);

    gtk_window_set_default_size (GTK_WINDOW (window), 640, 480);
    gtk_container_add (GTK_CONTAINER (window), grid);

    gtk_widget_show_all (grid);
}

GtkWidget *
gl_window_new (GtkApplication *application)
{
    g_return_val_if_fail (GTK_APPLICATION (application), NULL);

    return g_object_new (GL_TYPE_WINDOW, "application", application, NULL);
}