pcremote-client-n8x0 -> client sources
[remotepc] / pcremote-server-desktop-60 / debian / pcremote-server / usr / share / pcremote-server / utils / labels.py
1 # -*- coding: utf-8 -*-
2
3 #  ****************************************************************************
4 #  Copyright (c) 2008 INdT/Fucapi.
5 #  This program is free software: you can redistribute it and/or modify
6 #  it under the terms of the GNU Lesser General Public License as published by
7 #  the Free Software Foundation, either version 3 of the License, or
8 #  (at your option) any later version.
9
10 #  This program is distributed in the hope that it will be useful,
11 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
12 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 #  GNU Lesser General Public License for more details.
14
15 #  You should have received a copy of the GNU Lesser General Public License
16 #  along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
18 #  ============================================================================
19 #  Project Name : PC Remote
20 #  Author       : Jônatas Isvi
21 #  Email        : jonatas.nona@gmail.com
22 #  Version      : 1.0
23 #  Description  : Labels
24 #  ============================================================================
25
26 class Labels():
27
28         def __init__(self):
29                 pass
30
31         # SERVICES SUPPORTED
32         TABLET    = "Tablet"
33         SLIDESHOW = "Slideshow"
34         PLAYER    = "Player"
35         TORRENT   = "Torrent"
36
37         # GENERIC LABELS FOR MULTIMEDIA APPLICATIONS
38
39         PLAY          = "#play"
40         STOP          = "#stop"
41         PAUSE         = "#pause"
42         NEXT          = "#next"
43         PREVIOUS      = "#previous"
44         VOL_UP        = "#vol_up"
45         VOL_DOWN      = "#vol_down"
46         TLINE_LEFT    = "#tline_left"
47         TLINE_RIGHT   = "#tline_right"
48         RECORD        = "#record"
49         SEEK          = "#seek"
50         LOAD_PLAYLIST = "#load_playlist"
51         PLAYLIST      = "#playlist"
52         #------------------------------------------>
53
54         # GENERIC LABELS FOR APPLICATIONS
55
56         START        = "#start"
57         CLOSE        = "#close"
58         FULL_SRC     = "#fullscreen"
59         UPLOAD       = "#upload"
60         DOWNLOAD     = "#download"
61         SAVE         = "#save"
62         DELETE       = "#delete"
63         #-------------------------------->
64
65         # GENERAL MOUSE LABELS
66
67         CLICK         = "#click"
68         DOUBLE_CLICK  = "#double_click"
69         TRIPLE_CLICK  = "#triple_click"
70         LEFT_CLICK    = "#left_click"
71         RIGHT_CLICK   = "#right_click"
72         MIDDLE_CLICK  = "#middle_click"
73         #-------------------------------->
74
75