uniqueapp.h | uniqueapp.h | |||
---|---|---|---|---|
skipping to change at line 27 | skipping to change at line 27 | |||
* License along with this library; if not, write to the Free Software | * License along with this library; if not, write to the Free Software | |||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA | |||
* 02110-1301 USA | * 02110-1301 USA | |||
*/ | */ | |||
#ifndef __UNIQUE_APP_H__ | #ifndef __UNIQUE_APP_H__ | |||
#define __UNIQUE_APP_H__ | #define __UNIQUE_APP_H__ | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <unique/uniquemessage.h> | #include <unique/uniquemessage.h> | |||
#include <gtk/gtkwindow.h> | #include <gtk/gtk.h> | |||
G_BEGIN_DECLS | G_BEGIN_DECLS | |||
#define UNIQUE_TYPE_COMMAND (unique_command_get_type ()) | #define UNIQUE_TYPE_COMMAND (unique_command_get_type ()) | |||
#define UNIQUE_TYPE_RESPONSE (unique_response_get_type ()) | #define UNIQUE_TYPE_RESPONSE (unique_response_get_type ()) | |||
#define UNIQUE_TYPE_APP (unique_app_get_type ()) | #define UNIQUE_TYPE_APP (unique_app_get_type ()) | |||
#define UNIQUE_APP(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), UNIQUE_TYPE_APP, UniqueApp)) | #define UNIQUE_APP(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), UNIQUE_TYPE_APP, UniqueApp)) | |||
#define UNIQUE_IS_APP(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), UNIQUE_TYPE_APP)) | #define UNIQUE_IS_APP(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), UNIQUE_TYPE_APP)) | |||
#define UNIQUE_APP_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), UNIQUE_TYPE_APP, UniqueAppClass)) | #define UNIQUE_APP_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), UNIQUE_TYPE_APP, UniqueAppClass)) | |||
#define UNIQUE_IS_APP_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), UNIQUE_TYPE_APP)) | #define UNIQUE_IS_APP_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), UNIQUE_TYPE_APP)) | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||
uniquebackend.h | uniquebackend.h | |||
---|---|---|---|---|
skipping to change at line 26 | skipping to change at line 26 | |||
* You should have received a copy of the GNU Lesser General Public | * You should have received a copy of the GNU Lesser General Public | |||
* License along with this library; if not, write to the Free Software | * License along with this library; if not, write to the Free Software | |||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA | |||
* 02110-1301 USA | * 02110-1301 USA | |||
*/ | */ | |||
#ifndef __UNIQUE_BACKEND_H__ | #ifndef __UNIQUE_BACKEND_H__ | |||
#define __UNIQUE_BACKEND_H__ | #define __UNIQUE_BACKEND_H__ | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <gdk/gdkscreen.h> | #include <gdk/gdk.h> | |||
#include <unique/uniqueapp.h> | #include <unique/uniqueapp.h> | |||
G_BEGIN_DECLS | G_BEGIN_DECLS | |||
#define UNIQUE_TYPE_BACKEND (unique_backend_get_type ()) | #define UNIQUE_TYPE_BACKEND (unique_backend_get_type ()) | |||
#define UNIQUE_BACKEND(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), UNIQUE_TYPE_BACKEND, UniqueBackend)) | #define UNIQUE_BACKEND(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), UNIQUE_TYPE_BACKEND, UniqueBackend)) | |||
#define UNIQUE_IS_BACKEND(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), UNIQUE_TYPE_BACKEND)) | #define UNIQUE_IS_BACKEND(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), UNIQUE_TYPE_BACKEND)) | |||
#define UNIQUE_BACKEND_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), UNIQUE_TYPE_BACKEND, UniqueBackendClass)) | #define UNIQUE_BACKEND_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), UNIQUE_TYPE_BACKEND, UniqueBackendClass)) | |||
#define UNIQUE_IS_BACKEND_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), UNIQUE_TYPE_BACKEND)) | #define UNIQUE_IS_BACKEND_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), UNIQUE_TYPE_BACKEND)) | |||
#define UNIQUE_BACKEND_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), UNIQUE_TYPE_BACKEND, UniqueBackendClass)) | #define UNIQUE_BACKEND_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), UNIQUE_TYPE_BACKEND, UniqueBackendClass)) | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||
uniqueversion.h | uniqueversion.h | |||
---|---|---|---|---|
skipping to change at line 44 | skipping to change at line 44 | |||
* | * | |||
* Major version of Unique | * Major version of Unique | |||
*/ | */ | |||
#define UNIQUE_MAJOR_VERSION (1) | #define UNIQUE_MAJOR_VERSION (1) | |||
/** | /** | |||
* UNIQUE_MINOR_VERSION: | * UNIQUE_MINOR_VERSION: | |||
* | * | |||
* Minor version of Unique | * Minor version of Unique | |||
*/ | */ | |||
#define UNIQUE_MINOR_VERSION (0) | #define UNIQUE_MINOR_VERSION (1) | |||
/** | /** | |||
* UNIQUE_MICRO_VERSION: | * UNIQUE_MICRO_VERSION: | |||
* | * | |||
* Micro version of Unique | * Micro version of Unique | |||
*/ | */ | |||
#define UNIQUE_MICRO_VERSION (8) | #define UNIQUE_MICRO_VERSION (2) | |||
/** | /** | |||
* UNIQUE_VERSION_S: | * UNIQUE_VERSION_S: | |||
* | * | |||
* Unique version as a string | * Unique version as a string | |||
*/ | */ | |||
#define UNIQUE_VERSION_S "1.0.8" | #define UNIQUE_VERSION_S "1.1.2" | |||
/** | /** | |||
* UNIQUE_VERSION_HEX: | * UNIQUE_VERSION_HEX: | |||
* | * | |||
* Unique version as an hexadecimal integer | * Unique version as an hexadecimal integer | |||
*/ | */ | |||
#define UNIQUE_VERSION_HEX (UNIQUE_MAJOR_VERSION << 16 | \ | #define UNIQUE_VERSION_HEX (UNIQUE_MAJOR_VERSION << 16 | \ | |||
UNIQUE_MINOR_VERSION << 8 | \ | UNIQUE_MINOR_VERSION << 8 | \ | |||
UNIQUE_MICRO_VERSION) | UNIQUE_MICRO_VERSION) | |||
End of changes. 3 change blocks. | ||||
3 lines changed or deleted | 3 lines changed or added | |||