summaryrefslogtreecommitdiff
path: root/amiga/libs.h
blob: c80c61e734050ef6e71e3c173851b8df9f4f9245 (plain)
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
/*
 * Copyright 2014 Chris Young <chris@unsatisfactorysoftware.co.uk>
 *
 * This file is part of NetSurf, http://www.netsurf-browser.org/
 *
 * NetSurf 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; version 2 of the License.
 *
 * NetSurf 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, see <http://www.gnu.org/licenses/>.
 */

#ifndef AMIGA_LIBS_H
#include <stdbool.h>
#include <intuition/classes.h>

/* BOOPSI classes */
extern Class *BevelClass;
extern Class *BitMapClass;
extern Class *ButtonClass;
extern Class *ChooserClass;
extern Class *ClickTabClass;
extern Class *LayoutClass;
extern Class *ListBrowserClass;
extern Class *ScrollerClass;
extern Class *SpaceClass;
extern Class *SpeedBarClass;
extern Class *StringClass;
extern Class *WindowClass;

/* New improved ReAction macros! */
#define BevelObj	NewObject(BevelClass, NULL
#define BitMapObj	NewObject(BitMapClass, NULL
#define ButtonObj	NewObject(ButtonClass, NULL
#define ChooserObj	NewObject(ChooserClass, NULL
#define ClickTabObj	NewObject(ClickTabClass, NULL
#define LayoutHObj	NewObject(LayoutClass, NULL, LAYOUT_Orientation, LAYOUT_ORIENT_HORIZ
#define LayoutVObj	NewObject(LayoutClass, NULL, LAYOUT_Orientation, LAYOUT_ORIENT_VERT
#define ScrollerObj	NewObject(ScrollerClass, NULL
#define SpaceObj	NewObject(SpaceClass, NULL
#define SpeedBarObj	NewObject(ScrollerClass, NULL
#define StringObj	NewObject(StringClass, NULL
#define WindowObj	NewObject(WindowClass, NULL

/* Functions */
bool ami_libs_open(void);
void ami_libs_close(void);
#endif