This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| __author__ = 'Cheaterman' | |
| from kivy.core.window import Window | |
| from kivy.clock import Clock | |
| from kivy.event import EventDispatcher | |
| class KeyboardManager(EventDispatcher): | |
| def __init__(self): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| for keyset in self.pressed_keys: | |
| if keyset[1] == scancode: | |
| self.pressed_keys.remove(keyset) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| __author__ = 'Cheaterman' | |
| from functools import partial | |
| from kivy.app import App | |
| from kivy.uix.widget import Widget | |
| from kivy.lang import Builder | |
| kv = """ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| __author__ = 'Cheaterman' | |
| from kivy.app import App | |
| from kivy.uix.screenmanager import ScreenManager | |
| from kivy.lang import Builder | |
| kv = """ | |
| <TestWidget>: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from kivy.config import Config | |
| # Set your maxfps like this: | |
| Config.set('graphics', 'maxfps', 5) | |
| from kivy.app import App | |
| from kivy.lang import Builder | |
| from kivy.uix.screenmanager import ScreenManager, Screen, NoTransition | |
| Builder.load_string(""" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from kivy.app import App | |
| from kivy.uix.button import Button | |
| from kivy.uix.boxlayout import BoxLayout | |
| from kivy.uix.screenmanager import Screen | |
| class TestScreen(Screen): | |
| def __init__(self, *args, **kwargs): | |
| super(TestScreen, self).__init__(*args, **kwargs) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <a_samp> | |
| #include <streamer> | |
| #include "zcmd" | |
| #define COLOR_WHITE (0xFFFFFFFF) // We have this defined in "includes/TMS/Colors" -- John_Brown | |
| #define COLOR_RED (0xFF0000FF) // We have this defined in "includes/TMS/Colors" -- John_Brown | |
| #define COLOR_GREEN (0x33AA33AA) // We have this defined in "includes/TMS/Colors" -- John_Brown | |
| #if !defined MAX_STRING |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| *.pyc |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| *.pyc | |
| .*.sw[a-z] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| *.pyc | |
| .*.sw* |
OlderNewer