The files contained in this repository can be downloaded to your computer using a svn client.
On Linux you simply type the command displayed below.

This URL has Read-Only access.

Statistics
| Revision:

root / trunk / DomotiGa / FHome.form @ 213

History | View | Annotate | Download (1.9 kB)

1
# Gambas Form File 2.0
2
3
{ Form Form
4
  MoveScaled(0,0,98,73)
5
  Background = Color.TextBackground
6
  Text = ("Home")
7
  Icon = Picture["icons/home.png"]
8
  { VBox1 VBox
9
    MoveScaled(1,1,94,71)
10
    { VPanel1 VPanel
11
      MoveScaled(1,1,91,69)
12
      { frameTagline Frame
13
        MoveScaled(0,20,89,7)
14
        Text = ("Tagline")
15
        { txtTagLine TextBox
16
          MoveScaled(1,3,87,3)
17
          Text = ("")
18
          ReadOnly = True
19
          Border = False
20
        }
21
      }
22
      { frameWeather Frame
23
        MoveScaled(0,27,89,10)
24
        Text = ("Weather Comment")
25
        { txtWeatherHumid TextBox
26
          MoveScaled(1,6,87,3)
27
          Text = ("")
28
          ReadOnly = True
29
          Border = False
30
        }
31
        { txtWeatherTemp TextBox
32
          MoveScaled(1,3,87,3)
33
          Text = ("")
34
          ReadOnly = True
35
          Border = False
36
        }
37
      }
38
      { framePowerUsage Frame
39
        MoveScaled(0,38,35,23)
40
        Text = ("Power Usage")
41
        { pbPowerUsage PictureBox
42
          MoveScaled(2,3,31,18)
43
          Alignment = Align.Normal
44
        }
45
      }
46
      { HBox1 HBox
47
        MoveScaled(1,1,87,19)
48
        Spacing = 5
49
        { frameHouseMode Frame
50
          MoveScaled(0,0,16,18)
51
          Text = ("House Mode")
52
          { btnMode Button
53
            MoveScaled(2,3,12,4)
54
            Text = ("Home")
55
          }
56
          { btnMute Button
57
            MoveScaled(2,8,12,4)
58
            Text = ("Mute")
59
          }
60
        }
61
        { frameOutside Frame
62
          MoveScaled(17,0,49,18)
63
          Text = ("Outside")
64
          { txtTemperature TextLabel
65
            MoveScaled(2,3,17,6)
66
            Font = Font["+9"]
67
            Text = ("")
68
          }
69
          { txtHumid TextLabel
70
            MoveScaled(2,9,17,3)
71
            Text = ("")
72
          }
73
          { pbOutsideTemp PictureBox
74
            MoveScaled(18,2,30,15)
75
            Alignment = Align.Center
76
          }
77
        }
78
      }
79
    }
80
  }
81
}