summaryrefslogtreecommitdiff
path: root/tubes/source/contacts.src
diff options
context:
space:
mode:
authorMatúš Kukan <matus.kukan@gmail.com>2012-07-30 11:49:10 +0200
committerMatúš Kukan <matus.kukan@gmail.com>2012-08-02 18:00:55 +0200
commitbc21b49a464ae153341ee8d836993ca89b1a6919 (patch)
tree1187539ac5a405c02ef858cfba6624d5e8023a16 /tubes/source/contacts.src
parent4311938f7e838c6263b0e5774e611ec213cb02c6 (diff)
tubes: move sc/source/ui/collab/contacts.* to tubes
- sc no longer directly links against telepathy - there is new class ScCollaboration derived from abstract Collaboration describing collaboration functionality for apps used in tubes/ - also added resource manager into tubes/ Change-Id: Ic89ae955f5b47490f4f4b8781bcee5dea5336bae
Diffstat (limited to 'tubes/source/contacts.src')
-rw-r--r--tubes/source/contacts.src60
1 files changed, 60 insertions, 0 deletions
diff --git a/tubes/source/contacts.src b/tubes/source/contacts.src
new file mode 100644
index 000000000000..0cd386af2bfc
--- /dev/null
+++ b/tubes/source/contacts.src
@@ -0,0 +1,60 @@
+#include "contacts.hrc"
+
+ModelessDialog RID_TUBES_DLG_CONTACTS
+{
+ HelpId = "TUBES_HID"; // has to be something ...
+ OutputSize = TRUE ;
+ SVLook = TRUE ;
+ Hide = FALSE ;
+ Moveable = TRUE ;
+ Closeable = TRUE ;
+ Size = MAP_APPFONT ( 220 , 225 ) ;
+ OutputSize = TRUE ;
+ Text [ en-US ] = "Contacts" ;
+
+ FixedLine FL_LABEL
+ {
+ Pos = MAP_APPFONT ( 8 , 2 ) ;
+ Size = MAP_APPFONT ( 198 , 8 ) ;
+ Text [ en-US ] = "Select a contact to collaborate with" ;
+ };
+ PushButton BTN_CONNECT
+ {
+ Pos = MAP_APPFONT( 70 , 200 );
+ Size = MAP_APPFONT( 50 , 10 );
+ Text [ en-US ] = "startBuddySession";
+ };
+ PushButton BTN_GROUP
+ {
+ Pos = MAP_APPFONT( 70 , 212 );
+ Size = MAP_APPFONT( 50 , 10 );
+ Text [ en-US ] = "startGroupSession";
+ };
+ PushButton BTN_INVITE
+ {
+ Pos = MAP_APPFONT( 130 , 200 );
+ Size = MAP_APPFONT( 50 , 10 );
+ Text [ en-US ] = "Invite";
+ };
+ PushButton BTN_LISTEN
+ {
+ Pos = MAP_APPFONT( 8 , 200 );
+ Size = MAP_APPFONT( 50 , 10 );
+ Text [ en-US ] = "Listen";
+ };
+ Control CTL_LIST
+ {
+ Pos = MAP_APPFONT ( 8 , 10 ) ;
+ Size = MAP_APPFONT ( 200 , 190 ) ;
+ Border = TRUE ;
+ TabStop = TRUE ;
+ };
+ String STR_HEADER_ALIAS
+ {
+ Text [ en-US ] = "Alias" ;
+ };
+ String STR_HEADER_NAME
+ {
+ Text [ en-US ] = "Name" ;
+ };
+};