widgetdata.h

00001 // -*- C++ -*-
00002 
00003 /* 
00004  * GChemPaint library
00005  * widgetdata.h
00006  *
00007  * Copyright (C) 2002-2007 Jean Bréfort <jean.brefort@normalesup.org>
00008  *
00009  * This program is free software; you can redistribute it and/or 
00010  * modify it under the terms of the GNU General Public License as 
00011  * published by the Free Software Foundation; either version 2 of the
00012  * License, or (at your option) any later version.
00013  *
00014  * This program is distributed in the hope that it will be useful,
00015  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00016  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00017  * GNU General Public License for more details.
00018  *
00019  * You should have received a copy of the GNU General Public License
00020  * along with this program; if not, write to the Free Software
00021  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301
00022  * USA
00023  */
00024 
00025 #ifndef GCHEMPAINT_WIDGET_DATA_H
00026 #define GCHEMPAINT_WIDGET_DATA_H
00027 
00028 #include <libgnomecanvas/gnome-canvas.h>
00029 #include <map>
00030 #include <list>
00031 #include <gcu/object.h>
00032 
00033 namespace gcp {
00034 
00035 class Application;
00036 class View;
00037 
00038 extern guint ClipboardDataType, ClipboardDataType1;
00039 extern xmlChar* ClipboardData;
00040 extern bool cleared;
00041 void on_receive_targets (GtkClipboard *clipboard, GtkSelectionData *selection_data, Application *App);
00042 void on_clear_data (GtkClipboard *clipboard, Application *App);
00043 
00044 enum
00045 {
00046         SelStateUnselected = 0,
00047         SelStateSelected,
00048         SelStateUpdating,
00049         SelStateErasing
00050 };
00051 
00052 class WidgetData
00053 {
00054 public:
00055         View* m_View;
00056         GtkWidget *Canvas;
00057         GnomeCanvasGroup *Group;
00058         GnomeCanvasItem* Background;
00059         double Zoom;
00060         std::map<gcu::Object*, GnomeCanvasGroup*>Items;
00061         std::list<gcu::Object*>SelectedObjects;
00062         
00063         bool IsSelected (gcu::Object* obj);
00064         void SetSelected (gcu::Object* obj);
00065         void Unselect (gcu::Object* obj);
00066         void UnselectAll ();
00067         void MoveSelectedItems (double dx, double dy);
00068         void MoveSelection (double dx, double dy);
00069         void RotateSelection (double dx, double dy, double angle);
00070         void ClearSelection () {SelectedObjects.clear();}
00071         void Copy (GtkClipboard* clipboard);
00072         void GetSelectionBounds (ArtDRect &rect);
00073         bool HasSelection () {return !(SelectedObjects.empty());}
00074         void SelectAll ();
00075         static xmlDocPtr GetXmlDoc (GtkClipboard* clipboard);
00076         void ShowSelection (bool state);
00077         void GetObjectBounds (gcu::Object* obj, ArtDRect *rect);
00078 
00079 private:
00080         void MoveItems (gcu::Object *obj, double dx, double dy);
00081         void GetObjectBounds (gcu::Object* obj, ArtDRect &rect);
00082 };
00083 
00084 }       // namespace gcp
00085 
00086 #endif //GCHEMPAINT_WIDGET_DATA_H

Generated on Thu Dec 20 11:20:46 2007 for The Gnome Chemistry Utils by  doxygen 1.5.4