File: tsh-log-dialog.h

package info (click to toggle)
thunar-vcs-plugin 0.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 4,832 kB
  • sloc: ansic: 14,489; sh: 4,174; makefile: 306
file content (68 lines) | stat: -rw-r--r-- 2,888 bytes parent folder | download | duplicates (4)
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
/*-
 * Copyright (C) 2007-2011  Peter de Ridder <peter@xfce.org>
 *
 * 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 2 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, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

#ifndef __TSH_LOG_DIALOG_H__
#define __TSH_LOG_DIALOG_H__

#include <gtk/gtk.h>

G_BEGIN_DECLS;

typedef struct _TshLogDialogClass TshLogDialogClass;
typedef struct _TshLogDialog      TshLogDialog;

#define TSH_TYPE_LOG_DIALOG             (tsh_log_dialog_get_type ())
#define TSH_LOG_DIALOG(obj)             (G_TYPE_CHECK_INSTANCE_CAST ((obj), TSH_TYPE_LOG_DIALOG, TshLogDialog))
#define TSH_LOG_DIALOG_CLASS(klass)     (G_TYPE_CHECK_CLASS_CAST ((klass), TSH_TYPE_LOG_DIALOG, TshLogDialogClass))
#define TSH_IS_LOG_DIALOG(obj)          (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TSH_TYPE_LOG_DIALOG))
#define TSH_IS_LOG_DIALOG_CLASS(klass)  (G_TYPE_CHECK_CLASS_TYPE ((klass), TSH_TYPE_LOG_DIALOG))
#define TSH_LOG_DIALOG_GET_CLASS(obj)   (G_TYPE_INSTANCE_GET_CLASS ((obj), TSH_TYPE_LOG_DIALOG, TshLogDialogClass))

typedef struct
{
  const gchar *action;
  gchar *file;
} TshLogFile;

#define TSH_LOG_FILE(p) ((TshLogFile*)p)

GType        tsh_log_dialog_get_type (void) G_GNUC_CONST G_GNUC_INTERNAL;

GtkWidget*   tsh_log_dialog_new      (const gchar *title,
                                      GtkWindow *parent,
                                      GtkDialogFlags flags) G_GNUC_MALLOC G_GNUC_INTERNAL;

gchar*       tsh_log_dialog_add      (TshLogDialog *dialog,
                                      const gchar *parent,
                                      GSList *paths,
                                      glong revision,
                                      const char *author,
                                      const char *date,
                                      const char *message) G_GNUC_WARN_UNUSED_RESULT;
void         tsh_log_dialog_push     (TshLogDialog *dialog,
                                      gchar *path);
const gchar* tsh_log_dialog_top      (TshLogDialog *dialog);
void         tsh_log_dialog_pop      (TshLogDialog *dialog);
void         tsh_log_dialog_done     (TshLogDialog *dialog);

gboolean tsh_log_dialog_get_hide_copied (TshLogDialog *dialog);
gboolean tsh_log_dialog_get_show_merged (TshLogDialog *dialog);

G_END_DECLS;

#endif /* !__TSH_LOG_DIALOG_H__ */