summaryrefslogtreecommitdiff
path: root/client/ug-client.edc
diff options
context:
space:
mode:
Diffstat (limited to 'client/ug-client.edc')
-rw-r--r--client/ug-client.edc49
1 files changed, 49 insertions, 0 deletions
diff --git a/client/ug-client.edc b/client/ug-client.edc
new file mode 100644
index 0000000..398bb77
--- /dev/null
+++ b/client/ug-client.edc
@@ -0,0 +1,49 @@
+/*
+ * UI Gadget
+ *
+ * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved
+ *
+ * Contact: Jayoun Lee <airjany@samsung.com>
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * 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.
+ *
+ */
+
+collections {
+ group {
+ name: "main";
+
+ parts {
+ part { name: "background";
+ type: RECT;
+ mouse_events: 0;
+ description {
+ state: "default" 0.0;
+ rel1 { relative: 0.0 0.0; offset: 0 0; }
+ rel2 { relative: 1.0 1.0; offset: -1 -1; }
+ color: 0 0 0 255;
+ }
+ }
+
+ part { name: "content";
+ type: SWALLOW;
+ description {
+ state: "default" 0.0;
+ rel1 { relative: 0.2 0.2; to: background; }
+ rel2 { relative: 0.8 0.8; to: background; }
+ color: 255 255 255 255;
+ }
+ }
+ }
+ }
+}