Skip to content

Commit 464b1da

Browse files
author
electrocoder
committed
update
1 parent faa04a5 commit 464b1da

File tree

991 files changed

+122032
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

991 files changed

+122032
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion

output/MQTTClient/LICENSE

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
Copyright (c) 2012-2022 Scott Chacon and others
2+
3+
Permission is hereby granted, free of charge, to any person obtaining
4+
a copy of this software and associated documentation files (the
5+
"Software"), to deal in the Software without restriction, including
6+
without limitation the rights to use, copy, modify, merge, publish,
7+
distribute, sublicense, and/or sell copies of the Software, and to
8+
permit persons to whom the Software is furnished to do so, subject to
9+
the following conditions:
10+
11+
The above copyright notice and this permission notice shall be
12+
included in all copies or substantial portions of the Software.
13+
14+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

output/MQTTClient/MQTTClient.exe

1.33 MB
Binary file not shown.

output/MQTTClient/README.md

Lines changed: 72 additions & 0 deletions

output/MQTTClient/VCRUNTIME140.dll

94.9 KB
Binary file not shown.

output/MQTTClient/about.py

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
"""MQTT Client GUI
2+
3+
Author: Sahin MERSIN - electrocoder <[email protected]>
4+
5+
Source Code: https://github.com/electrocoder/MQTTClient
6+
7+
MQTT Examples: https://github.com/mesebilisim/mqtt-examples
8+
9+
Date: 12.11.2022
10+
11+
File: This script is About window
12+
"""
13+
import os
14+
import tkinter as tk
15+
16+
17+
class AboutWindow:
18+
def __init__(self, main_window_frame_ui, font_size):
19+
self.about_window = tk.Toplevel(main_window_frame_ui)
20+
self.about_window.grab_set()
21+
self.about_window.title("MQTT Client About")
22+
23+
text1 = tk.Text(self.about_window, font=font_size)
24+
text1.grid(row=0, column=0, padx=50, pady=50)
25+
26+
button1 = tk.Button(self.about_window, text='OK', font=font_size,
27+
command=self.close)
28+
button1.grid(row=1, column=0, padx=50, pady=50)
29+
30+
basedir = os.path.dirname(__file__)
31+
self.file_name = os.path.join(basedir, "README.md")
32+
with open(self.file_name) as f:
33+
text1.insert(tk.INSERT, f.read())
34+
35+
def close(self):
36+
self.about_window.destroy()
12.4 KB
Binary file not shown.
11.9 KB
Binary file not shown.
11.9 KB
Binary file not shown.
11.9 KB
Binary file not shown.

0 commit comments

Comments
 (0)