Skip to content

Commit

Permalink
newchanges
Browse files Browse the repository at this point in the history
  • Loading branch information
netpipe committed Nov 22, 2022
1 parent 41298c7 commit a63e18d
Show file tree
Hide file tree
Showing 394 changed files with 24,294 additions and 92 deletions.
539 changes: 539 additions & 0 deletions Makefile

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# VIP-Phone
qt based voice over ip phone

work in progress, alot of the extra files are extras for now. might add and remove more functionality later

todo multiple clients

based on https://github.com/JanSimek/voice-over-lan
Binary file added Resource/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Resource/sounds/COINS Collect Jackpot Win 03.ogg
Binary file not shown.
Binary file added Resource/sounds/Coin_Slide_Carpet.ogg
Binary file not shown.
Binary file added Resource/sounds/Coins_Bottlecaps_Drop.ogg
Binary file not shown.
Binary file added Resource/sounds/Coins_Drop_Carpet_06.ogg
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added Resource/sounds/Money,Coins,Hand,Count,x4.ogg
Binary file not shown.
Binary file added Resource/sounds/Money,Coins,Handle.ogg
Binary file not shown.
Binary file not shown.
Binary file added Resource/sounds/coins2.ogg
Binary file not shown.
Binary file not shown.
Binary file added Resource/sounds/ec1_mono.ogg
Binary file not shown.
Binary file added Resource/sounds/ec2_mono.ogg
Binary file not shown.
Binary file added Resource/sounds/ec3_mono.ogg
Binary file not shown.
Binary file added Resource/sounds/ec4_mono.ogg
Binary file not shown.
Binary file added Resource/sounds/ec5_mono.ogg
Binary file not shown.
Binary file added Resource/sounds/ec6_mono.ogg
Binary file not shown.
Binary file added Resource/sounds/ec7_stereo.ogg
Binary file not shown.
Binary file added Resource/sounds/ec8_mono.ogg
Binary file not shown.
Binary file added Resource/sounds/ec9_mono.ogg
Binary file not shown.
26 changes: 26 additions & 0 deletions Resource/themes/BreezeStyleSheets/LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
The MIT License (MIT)
=====================

Copyright © `<2013-2014>` `<Colin Duquesnoy>`
Copyright © `<2015-2016>` `<Alex Huszagh>`

Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the “Software”), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
96 changes: 96 additions & 0 deletions Resource/themes/BreezeStyleSheets/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
BreezeStyleSheets
=================

Breeze and BreezeDark-like stylesheets for Qt Applications.

C++ Installation
================

Copy `breeze.qrc`, `dark.qss`, `light.qss` and the `dark` and `light` folders into your project directory and add the qrc file to your project file.

For example:

```qmake
TARGET = app
SOURCES = main.cpp
RESOURCES = breeze.qrc
```

To load the stylesheet in C++, load the file using QFile and read the data. For example, to load BreezeDark, run:

```cpp

#include <QApplication>
#include <QFile>
#include <QTextStream>


int main(int argc, char *argv[])
{
QApplication app(argc, argv);

// set stylesheet
QFile file(":/dark.qss");
file.open(QFile::ReadOnly | QFile::Text);
QTextStream stream(&file);
app.setStyleSheet(stream.readAll());

// code goes here

return app.exec();
}
```
PyQt5 Installation
==================
To compile the stylesheet for use with PyQt5, compile with the following command `pyrcc5 breeze.qrc -o breeze_resources.py`, and import the stylesheets. Afterwards, to load the stylesheet in Python, load the file using QFile and read the data. For example, to load BreezeDark, run:
```python
from PyQt5 import QtWidgets
from PyQt5.QtCore import QFile, QTextStream
import breeze_resources
def main():
app = QtWidgets.QApplication(sys.argv)
# set stylesheet
file = QFile(":/dark.qss")
file.open(QFile.ReadOnly | QFile.Text)
stream = QTextStream(file)
app.setStyleSheet(stream.readAll())
# code goes here
app.exec_()
}
```

License
=======

MIT, see [license](/LICENSE.md).

Example
=======

**Breeze/BreezeDark**

Example user interface using the Breeze and BreezeDark stylesheets side-by-side.

![BreezeDark](/assets/Breeze.gif)

Acknowledgements
================

BreezeStyleSheets is a fork of [QDarkStyleSheet](https://github.com/ColinDuquesnoy/QDarkStyleSheet).

Contact
=======

Email: [email protected]
Twitter: KardOnIce

89 changes: 89 additions & 0 deletions Resource/themes/BreezeStyleSheets/breeze.qrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
<RCC>
<qresource>
<file>light/hmovetoolbar.svg</file>
<file>light/vmovetoolbar.svg</file>
<file>light/hsepartoolbar.svg</file>
<file>light/vsepartoolbars.svg</file>
<file>light/stylesheet-branch-end.svg</file>
<file>light/stylesheet-branch-end-closed.svg</file>
<file>light/stylesheet-branch-end-open.svg</file>
<file>light/stylesheet-vline.svg</file>
<file>light/stylesheet-branch-more.svg</file>
<file>light/branch_closed.svg</file>
<file>light/branch_closed-on.svg</file>
<file>light/branch_open.svg</file>
<file>light/branch_open-on.svg</file>
<file>light/down_arrow.svg</file>
<file>light/down_arrow_disabled.svg</file>
<file>light/down_arrow-hover.svg</file>
<file>light/left_arrow.svg</file>
<file>light/left_arrow_disabled.svg</file>
<file>light/right_arrow.svg</file>
<file>light/right_arrow_disabled.svg</file>
<file>light/up_arrow.svg</file>
<file>light/up_arrow_disabled.svg</file>
<file>light/up_arrow-hover.svg</file>
<file>light/sizegrip.svg</file>
<file>light/transparent.svg</file>
<file>light/close.svg</file>
<file>light/close-hover.svg</file>
<file>light/close-pressed.svg</file>
<file>light/undock.svg</file>
<file>light/undock-hover.svg</file>
<file>light/checkbox_checked-hover.svg</file>
<file>light/checkbox_checked.svg</file>
<file>light/checkbox_checked_disabled.svg</file>
<file>light/checkbox_indeterminate.svg</file>
<file>light/checkbox_indeterminate-hover.svg</file>
<file>light/checkbox_indeterminate_disabled.svg</file>
<file>light/checkbox_unchecked-hover.svg</file>
<file>light/checkbox_unchecked_disabled.svg</file>
<file>light/radio_checked-hover.svg</file>
<file>light/radio_checked.svg</file>
<file>light/radio_checked_disabled.svg</file>
<file>light/radio_unchecked-hover.svg</file>
<file>light/radio_unchecked_disabled.svg</file>
<file>dark/hmovetoolbar.svg</file>
<file>dark/vmovetoolbar.svg</file>
<file>dark/hsepartoolbar.svg</file>
<file>dark/vsepartoolbars.svg</file>
<file>dark/stylesheet-branch-end.svg</file>
<file>dark/stylesheet-branch-end-closed.svg</file>
<file>dark/stylesheet-branch-end-open.svg</file>
<file>dark/stylesheet-vline.svg</file>
<file>dark/stylesheet-branch-more.svg</file>
<file>dark/branch_closed.svg</file>
<file>dark/branch_closed-on.svg</file>
<file>dark/branch_open.svg</file>
<file>dark/branch_open-on.svg</file>
<file>dark/down_arrow.svg</file>
<file>dark/down_arrow_disabled.svg</file>
<file>dark/down_arrow-hover.svg</file>
<file>dark/left_arrow.svg</file>
<file>dark/left_arrow_disabled.svg</file>
<file>dark/right_arrow.svg</file>
<file>dark/right_arrow_disabled.svg</file>
<file>dark/up_arrow.svg</file>
<file>dark/up_arrow_disabled.svg</file>
<file>dark/up_arrow-hover.svg</file>
<file>dark/sizegrip.svg</file>
<file>dark/transparent.svg</file>
<file>dark/close.svg</file>
<file>dark/close-hover.svg</file>
<file>dark/close-pressed.svg</file>
<file>dark/undock.svg</file>
<file>dark/undock-hover.svg</file>
<file>dark/checkbox_checked.svg</file>
<file>dark/checkbox_checked_disabled.svg</file>
<file>dark/checkbox_indeterminate.svg</file>
<file>dark/checkbox_indeterminate_disabled.svg</file>
<file>dark/checkbox_unchecked.svg</file>
<file>dark/checkbox_unchecked_disabled.svg</file>
<file>dark/radio_checked.svg</file>
<file>dark/radio_checked_disabled.svg</file>
<file>dark/radio_unchecked.svg</file>
<file>dark/radio_unchecked_disabled.svg</file>
<file>light.qss</file>
<file>dark.qss</file>
</qresource>
</RCC>
Loading

0 comments on commit a63e18d

Please sign in to comment.