|
Revision 442, 1.3 kB
(checked in by radekk, 5 years ago)
|
Hand tool - implementing cursor hand.
|
- Property svn:eol-style set to
native
- Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 |
/* |
|---|
| 2 |
* Sweep, a sound wave editor. |
|---|
| 3 |
* |
|---|
| 4 |
* Copyright (C) 2000 Conrad Parker |
|---|
| 5 |
* |
|---|
| 6 |
* This program is free software; you can redistribute it and/or modify |
|---|
| 7 |
* it under the terms of the GNU General Public License as published by |
|---|
| 8 |
* the Free Software Foundation; either version 2 of the License, or |
|---|
| 9 |
* (at your option) any later version. |
|---|
| 10 |
* |
|---|
| 11 |
* This program is distributed in the hope that it will be useful, |
|---|
| 12 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 13 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|---|
| 14 |
* 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 Free Software |
|---|
| 18 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
|---|
| 19 |
*/ |
|---|
| 20 |
|
|---|
| 21 |
#ifndef __CURSORS_H__ |
|---|
| 22 |
#define __CURSORS_H__ |
|---|
| 23 |
|
|---|
| 24 |
enum { |
|---|
| 25 |
SWEEP_CURSOR_CROSSHAIR, |
|---|
| 26 |
SWEEP_CURSOR_MOVE, |
|---|
| 27 |
SWEEP_CURSOR_HORIZ, |
|---|
| 28 |
SWEEP_CURSOR_HORIZ_PLUS, |
|---|
| 29 |
SWEEP_CURSOR_HORIZ_MINUS, |
|---|
| 30 |
SWEEP_CURSOR_ZOOM_IN, |
|---|
| 31 |
SWEEP_CURSOR_ZOOM_OUT, |
|---|
| 32 |
SWEEP_CURSOR_NEEDLE, |
|---|
| 33 |
SWEEP_CURSOR_PENCIL, |
|---|
| 34 |
SWEEP_CURSOR_NOISE, |
|---|
| 35 |
SWEEP_CURSOR_HAND_OPEN, |
|---|
| 36 |
SWEEP_CURSOR_HAND_CLOSE, |
|---|
| 37 |
SWEEP_CURSOR_MAX |
|---|
| 38 |
}; |
|---|
| 39 |
|
|---|
| 40 |
void |
|---|
| 41 |
create_bitmap_and_mask_from_xpm (GdkBitmap ** bitmap, |
|---|
| 42 |
GdkBitmap ** mask, |
|---|
| 43 |
gchar ** xpm); |
|---|
| 44 |
|
|---|
| 45 |
void |
|---|
| 46 |
init_cursors (void); |
|---|
| 47 |
|
|---|
| 48 |
#endif |
|---|