blob: b58f11f85af4771c0cd5f396ab19f4ad23c60108 (
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
|
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <errno.h>
#include <fcntl.h>
#include <assert.h>
#include <gtk/gtk.h>
#include <vte/vte.h>
#include <libvirt/libvirt.h>
/* ------------------------------------------------------------------ */
enum vconsole_cols {
/* common */
NAME_COL,
/* hosts only */
CPTR_COL, // vconsole_connect
URI_COL,
/* guests only */
DPTR_COL, // vconsole_domain
ID_COL,
STATE_COL,
N_COLUMNS
};
struct vconsole_window {
/* toplevel window */
GtkWidget *toplevel;
GtkWidget *notebook;
GtkUIManager *ui;
/* recent hosts */
GtkActionGroup *r_ag;
guint r_id;
/* domain list tab */
GtkTreeStore *store;
GtkWidget *tree;
/* options */
gboolean tty_blink;
char *tty_font;
char *tty_fg;
char *tty_bg;
};
extern int debug;
extern GKeyFile *config;
void config_write(void);
/* ------------------------------------------------------------------ */
struct vconsole_connect {
struct vconsole_window *win;
virConnectPtr ptr;
};
struct vconsole_connect *connect_init(struct vconsole_window *win,
const char *uri);
/* ------------------------------------------------------------------ */
struct vconsole_domain {
struct vconsole_connect *conn;
char uuid[VIR_UUID_STRING_BUFLEN];
GtkWidget *vbox, *vte, *status;
int page;
virStreamPtr stream;
virDomainInfo info;
};
void domain_update(struct vconsole_connect *conn,
virDomainPtr d, virDomainEventType event);
void domain_activate(struct vconsole_domain *dom);
void domain_configure_all_vtes(struct vconsole_window *win);
void domain_close_current_tab(struct vconsole_window *win);
|