~midori/midori/gtk3WebKit2only

« back to all changes in this revision

Viewing changes to src/prefs.h

  • Committer: Christian Dywan
  • Date: 2007-12-16 22:20:24 UTC
  • Revision ID: git-v1:3bbd273a4f9e85a1d8380cb0924c875683fa3ad1
Tags: v0.0.14
Initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 Copyright (C) 2007 Christian Dywan <christian@twotoasts.de>
 
3
 
 
4
 This library is free software; you can redistribute it and/or
 
5
 modify it under the terms of the GNU Lesser General Public
 
6
 License as published by the Free Software Foundation; either
 
7
 version 2.1 of the License, or (at your option) any later version.
 
8
 
 
9
 See the file COPYING for the full license text.
 
10
*/
 
11
 
 
12
#ifndef __PREFS_H__
 
13
#define __PREFS_H__ 1
 
14
 
 
15
#include "browser.h"
 
16
 
 
17
#include <gtk/gtk.h>
 
18
 
 
19
// -- Types
 
20
 
 
21
typedef struct
 
22
{
 
23
    CBrowser* browser;
 
24
    //GtkWidget* window;
 
25
    GtkWidget* treeview;
 
26
    GtkWidget* combobox;
 
27
    GtkWidget* add;
 
28
} CPrefs;
 
29
 
 
30
enum
 
31
{
 
32
    PROTOCOLS_COL_NAME,
 
33
    PROTOCOLS_COL_COMMAND,
 
34
    PROTOCOLS_COL_N
 
35
};
 
36
 
 
37
// -- Declarations
 
38
 
 
39
GtkWidget*
 
40
prefs_preferences_dialog_new(CBrowser*);
 
41
 
 
42
#endif /* !__PREFS_H__ */