~ubuntu-branches/ubuntu/precise/nvidia-settings/precise-proposed

« back to all changes in this revision

Viewing changes to src/gtk+-2.x/ctkimagesliders.h

  • Committer: Bazaar Package Importer
  • Author(s): Randall Donald
  • Date: 2004-07-03 19:09:17 UTC
  • Revision ID: james.westby@ubuntu.com-20040703190917-rqkze2s58ux5pamy
Tags: upstream-1.0
ImportĀ upstreamĀ versionĀ 1.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * nvidia-settings: A tool for configuring the NVIDIA X driver on Unix
 
3
 * and Linux systems.
 
4
 *
 
5
 * Copyright (C) 2004 NVIDIA Corporation.
 
6
 *
 
7
 * This program is free software; you can redistribute it and/or
 
8
 * modify it under the terms of Version 2 of the GNU General Public
 
9
 * License as published by the Free Software Foundation.
 
10
 *
 
11
 * This program is distributed in the hope that it will be useful, but
 
12
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See Version 2
 
14
 * of the GNU General Public License for more details.
 
15
 *
 
16
 * You should have received a copy of the GNU General Public License
 
17
 * along with this program; if not, write to the:
 
18
 *
 
19
 *           Free Software Foundation, Inc.
 
20
 *           59 Temple Place - Suite 330
 
21
 *           Boston, MA 02111-1307, USA
 
22
 *
 
23
 */
 
24
 
 
25
#ifndef __CTK_IMAGE_SLIDERS_H__
 
26
#define __CTK_IMAGE_SLIDERS_H__
 
27
 
 
28
#include "ctkevent.h"
 
29
#include "ctkconfig.h"
 
30
 
 
31
G_BEGIN_DECLS
 
32
 
 
33
#define CTK_TYPE_IMAGE_SLIDERS (ctk_image_sliders_get_type())
 
34
 
 
35
#define CTK_IMAGE_SLIDERS(obj) \
 
36
    (G_TYPE_CHECK_INSTANCE_CAST ((obj), CTK_TYPE_IMAGE_SLIDERS, \
 
37
                                 CtkImageSliders))
 
38
 
 
39
#define CTK_IMAGE_SLIDERS_CLASS(klass) \
 
40
    (G_TYPE_CHECK_CLASS_CAST ((klass), CTK_TYPE_IMAGE_SLIDERS, \
 
41
                              CtkImageSlidersClass))
 
42
 
 
43
#define CTK_IS_IMAGE_SLIDERS(obj) \
 
44
    (G_TYPE_CHECK_INSTANCE_TYPE ((obj), CTK_TYPE_IMAGE_SLIDERS))
 
45
 
 
46
#define CTK_IS_IMAGE_SLIDERS_CLASS(class) \
 
47
    (G_TYPE_CHECK_CLASS_TYPE ((klass), CTK_TYPE_IMAGE_SLIDERS))
 
48
 
 
49
#define CTK_IMAGE_SLIDERS_GET_CLASS(obj) \
 
50
    (G_TYPE_INSTANCE_GET_CLASS ((obj), CTK_TYPE_IMAGE_SLIDERS, \
 
51
                                CtkImageSlidersClass))
 
52
 
 
53
typedef struct _CtkImageSliders       CtkImageSliders;
 
54
typedef struct _CtkImageSlidersClass  CtkImageSlidersClass;
 
55
 
 
56
struct _CtkImageSliders
 
57
{
 
58
    GtkVBox parent;
 
59
    
 
60
    NvCtrlAttributeHandle *handle;
 
61
    CtkConfig *ctk_config;
 
62
    GtkWidget *reset_button;
 
63
    
 
64
    GtkObject *dvc_adjustment;
 
65
    GtkObject *image_sharpening_adjustment;
 
66
 
 
67
    char *name;
 
68
 
 
69
    unsigned int display_device_mask;
 
70
    unsigned int active_attributes;
 
71
};
 
72
 
 
73
struct _CtkImageSlidersClass
 
74
{
 
75
    GtkVBoxClass parent_class;
 
76
};
 
77
 
 
78
GType       ctk_image_sliders_get_type  (void) G_GNUC_CONST;
 
79
GtkWidget*  ctk_image_sliders_new       (NvCtrlAttributeHandle *,
 
80
                                         CtkConfig *, CtkEvent *,
 
81
                                         GtkWidget *reset_button,
 
82
                                         unsigned int display_device_mask,
 
83
                                         char *name);
 
84
 
 
85
void ctk_image_sliders_reset(CtkImageSliders *);
 
86
 
 
87
gboolean add_image_sharpening_help(CtkImageSliders *ctk_image_sliders,
 
88
                                   GtkTextBuffer *b,
 
89
                                   GtkTextIter *i);
 
90
 
 
91
G_END_DECLS
 
92
 
 
93
#endif /* __CTK_IMAGE_SLIDERS_H__ */