summaryrefslogtreecommitdiff
path: root/lib/common/Ui/include/Widget.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/common/Ui/include/Widget.h')
-rw-r--r--lib/common/Ui/include/Widget.h56
1 files changed, 0 insertions, 56 deletions
diff --git a/lib/common/Ui/include/Widget.h b/lib/common/Ui/include/Widget.h
deleted file mode 100644
index 9e712f3..0000000
--- a/lib/common/Ui/include/Widget.h
+++ /dev/null
@@ -1,56 +0,0 @@
-/*
- * Copyright 2012-2013 Samsung Electronics Co., Ltd
- *
- * Licensed under the Flora License, Version 1.1 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://floralicense.org/license/
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-#ifndef __UI_WIDGET_H__
-#define __UI_WIDGET_H__
-
-#include <Elementary.h>
-
-#include "NonCopyable.h"
-
-namespace Ui
-{
- /*
- * \par Description:
- * Base wrapper class for all Evas objects.
- */
- class Widget : public Utils::NonCopyable
- {
- public:
- virtual ~Widget();
-
- /*
- * \par Description create derived widget with @p parent as parent.
- *
- * @return true on success, false otherwise
- */
- virtual bool create(Evas_Object *parent) = 0;
-
- /*
- * @return Underlying Evas_Object.
- */
- Evas_Object * getObject() const;
-
- protected:
- Widget();
- bool setObject(Evas_Object *object);
-
- private:
- Evas_Object *m_Object;
- };
-}
-
-#endif /* __UI_WIDGET_H__ */