globalchat 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
data/.DS_Store ADDED
Binary file
data/.gitignore ADDED
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/.rvmrc ADDED
@@ -0,0 +1 @@
1
+ rvm use 1.9.3
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source "https://rubygems.org"
2
+
3
+ gem 'qtbindings'
data/GlobalChat.ui ADDED
@@ -0,0 +1,74 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <ui version="4.0">
3
+ <class>MainWindow</class>
4
+ <widget class="QMainWindow" name="MainWindow">
5
+ <property name="geometry">
6
+ <rect>
7
+ <x>0</x>
8
+ <y>0</y>
9
+ <width>603</width>
10
+ <height>434</height>
11
+ </rect>
12
+ </property>
13
+ <property name="sizePolicy">
14
+ <sizepolicy hsizetype="Expanding" vsizetype="Expanding">
15
+ <horstretch>0</horstretch>
16
+ <verstretch>0</verstretch>
17
+ </sizepolicy>
18
+ </property>
19
+ <property name="minimumSize">
20
+ <size>
21
+ <width>603</width>
22
+ <height>434</height>
23
+ </size>
24
+ </property>
25
+ <property name="windowTitle">
26
+ <string>MainWindow</string>
27
+ </property>
28
+ <widget class="QWidget" name="centralwidget">
29
+ <layout class="QGridLayout" name="gridLayout">
30
+ <item row="0" column="0">
31
+ <widget class="QListWidget" name="listWidget">
32
+ <property name="minimumSize">
33
+ <size>
34
+ <width>121</width>
35
+ <height>381</height>
36
+ </size>
37
+ </property>
38
+ </widget>
39
+ </item>
40
+ <item row="0" column="1">
41
+ <widget class="QTextEdit" name="textEdit">
42
+ <property name="enabled">
43
+ <bool>true</bool>
44
+ </property>
45
+ <property name="sizePolicy">
46
+ <sizepolicy hsizetype="Expanding" vsizetype="Expanding">
47
+ <horstretch>0</horstretch>
48
+ <verstretch>0</verstretch>
49
+ </sizepolicy>
50
+ </property>
51
+ <property name="minimumSize">
52
+ <size>
53
+ <width>441</width>
54
+ <height>381</height>
55
+ </size>
56
+ </property>
57
+ </widget>
58
+ </item>
59
+ <item row="1" column="0" colspan="2">
60
+ <widget class="QLineEdit" name="lineEdit">
61
+ <property name="minimumSize">
62
+ <size>
63
+ <width>571</width>
64
+ <height>21</height>
65
+ </size>
66
+ </property>
67
+ </widget>
68
+ </item>
69
+ </layout>
70
+ </widget>
71
+ </widget>
72
+ <resources/>
73
+ <connections/>
74
+ </ui>
data/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2012 Jonathan "jsilver1er" Silverman
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.