]> Shamusworld >> Repos - architektonas/blobdiff - src/container.h
Fixed Container loading, informative display.
[architektonas] / src / container.h
index 4922fb4fd7545e62334125e96ac22ac14ab6dbb3..905e7572fab7ca8c31ab5688ecd48544dd2ef985 100644 (file)
@@ -7,27 +7,45 @@
 class Container: public Object
 {
        public:
+//             Container(void);
                Container(Vector, Object * p = 0);
+               Container(const Container &);
                ~Container();
 
-               virtual void Draw(QPainter *);
+               Container & operator=(const Container &);
+               virtual void Draw(Painter *);
                virtual Vector Center(void);
                virtual bool Collided(Vector);
                virtual void PointerMoved(Vector);
                virtual void PointerReleased(void);
                virtual bool NeedsUpdate(void);
-               void Add(Object *);
+               virtual void Add(Object *);
+               virtual QRectF Extents(void);
+               virtual void Enumerate(FILE *);
+               virtual Object * Copy(void);
+               void Delete(Object *);
+               void DeleteSelectedItems(void);
+               void Clear(void);
+               void SelectAll(void);
+               void DeselectAll(void);
+               int ItemsSelected(void);
+               Object * SelectedItem(unsigned int);
+               void MoveContentsTo(Container *);
+               void MoveSelectedContentsTo(Container *);
+               void ResizeAllDimensions(double);
 
        protected:
                Vector oldPoint;                                        // Used for dragging
 
-       private:
+       public:
                std::vector<Object *> objects;
+               bool isTopLevelContainer;
+       private:
                bool dragging;
                bool draggingHandle1;
                bool draggingHandle2;
-//             bool needUpdate;
                bool objectWasDragged;
+               bool hit;
 };
 
 #endif // __CONTAINER_H__