~ubuntu-branches/ubuntu/trusty/rawstudio/trusty-proposed

« back to all changes in this revision

Viewing changes to src/rs-dir-selector.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Baumann
  • Date: 2008-10-18 17:58:00 UTC
  • mfrom: (2.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20081018175800-r1s7ke1xwy9wxv5b
Tags: 1.1.1-1
MergingĀ upstreamĀ versionĀ 1.1.1.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
#include <gtk/gtk.h>
24
24
 
25
 
enum
26
 
{
27
 
        COL_NAME = 0,
28
 
        COL_PATH,
29
 
        NUM_COLS
30
 
};
31
 
 
32
25
typedef struct _RSDirSelector RSDirSelector;
33
26
typedef struct _RSDirSelectorClass RSDirSelectorClass;
34
27
 
43
36
 * Creates a new RSDirSelection widget
44
37
 * @return A new RSDirSelector
45
38
 */
46
 
extern GtkWidget *
47
 
rs_dir_selector_new(void);
48
 
extern void rs_dir_selector_set_root(RSDirSelector *selector, gchar *root);
49
 
extern void rs_dir_selector_expand_path(RSDirSelector *selector, gchar *expand);
 
39
extern GtkWidget *rs_dir_selector_new(void);
 
40
extern void rs_dir_selector_set_root(RSDirSelector *selector, const gchar *root);
 
41
extern void rs_dir_selector_expand_path(RSDirSelector *selector, const gchar *expand);
50
42
 
51
43
#define RS_DIR_SELECTOR_TYPE_WIDGET             (rs_dir_selector_get_type ())
52
44
#define RS_DIR_SELECTOR(obj)             (G_TYPE_CHECK_INSTANCE_CAST ((obj), RS_DIR_SELECTOR_TYPE_WIDGET, RSDirSelector))