/* * Copyright (C) 2007 OpenedHand Ltd. * Authored by: Rob Bradford * * This 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. * * This software 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 . */ #ifndef _ANJUTA_PLUGIN_SDK_H_ #define _ANJUTA_PLUGIN_SDK_H_ #include typedef struct _AnjutaPluginSdk AnjutaPluginSdk; typedef struct _AnjutaPluginSdkClass AnjutaPluginSdkClass; struct _AnjutaPluginSdk { AnjutaPlugin parent; GtkWidget *prefs; GtkWidget *sdk_root_chooser; GtkWidget *triplet_entry; guint sdk_root_notifyid; guint triplet_notifyid; guint update_environment_idle; gchar *triplet; gchar *sdk_root; gchar *path_component; }; struct _AnjutaPluginSdkClass { AnjutaPluginClass parent_class; }; #endif