├── .gitattributes ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── LICENSE ├── StyleSheets └── MetroUI.qss └── readme.md /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | 7 | # Standard to msysgit 8 | *.doc diff=astextplain 9 | *.DOC diff=astextplain 10 | *.docx diff=astextplain 11 | *.DOCX diff=astextplain 12 | *.dot diff=astextplain 13 | *.DOT diff=astextplain 14 | *.pdf diff=astextplain 15 | *.PDF diff=astextplain 16 | *.rtf diff=astextplain 17 | *.RTF diff=astextplain 18 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | 5 | --- 6 | 7 | **Describe the bug** 8 | A clear and concise description of what the bug is. 9 | 10 | **To Reproduce** 11 | Steps to reproduce the behavior: 12 | 1. Go to '...' 13 | 2. Click on '....' 14 | 3. Scroll down to '....' 15 | 4. See error 16 | 17 | **Expected behavior** 18 | A clear and concise description of what you expected to happen. 19 | 20 | **Screenshots** 21 | If applicable, add screenshots to help explain your problem. 22 | 23 | **Desktop (please complete the following information):** 24 | - OS: [e.g. iOS] 25 | - Browser [e.g. chrome, safari] 26 | - Version [e.g. 22] 27 | 28 | **Smartphone (please complete the following information):** 29 | - Device: [e.g. iPhone6] 30 | - OS: [e.g. iOS8.1] 31 | - Browser [e.g. stock browser, safari] 32 | - Version [e.g. 22] 33 | 34 | **Additional context** 35 | Add any other context about the problem here. 36 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | 5 | --- 6 | 7 | **Is your feature request related to a problem? Please describe.** 8 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 9 | 10 | **Describe the solution you'd like** 11 | A clear and concise description of what you want to happen. 12 | 13 | **Describe alternatives you've considered** 14 | A clear and concise description of any alternative solutions or features you've considered. 15 | 16 | **Additional context** 17 | Add any other context or screenshots about the feature request here. 18 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Windows image file caches 2 | Thumbs.db 3 | ehthumbs.db 4 | 5 | # Folder config file 6 | Desktop.ini 7 | 8 | # Recycle Bin used on file shares 9 | $RECYCLE.BIN/ 10 | 11 | # Windows Installer files 12 | *.cab 13 | *.msi 14 | *.msm 15 | *.msp 16 | 17 | # Windows shortcuts 18 | *.lnk 19 | 20 | # ========================= 21 | # Operating System Files 22 | # ========================= 23 | 24 | # OSX 25 | # ========================= 26 | 27 | .DS_Store 28 | .AppleDouble 29 | .LSOverride 30 | 31 | # Thumbnails 32 | ._* 33 | 34 | # Files that might appear on external disk 35 | .Spotlight-V100 36 | .Trashes 37 | 38 | # Directories potentially created on remote AFP share 39 | .AppleDB 40 | .AppleDesktop 41 | Network Trash Folder 42 | Temporary Items 43 | .apdisk 44 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2018 Jesse 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /StyleSheets/MetroUI.qss: -------------------------------------------------------------------------------- 1 | QMainWindow{ 2 | background-color:#1d1d1d; 3 | } 4 | 5 | QMenuBar{ 6 | background-color:#1d1d1d; 7 | padding:5px; 8 | font: 12pt "MS Shell Dlg 2"; 9 | } 10 | 11 | QMenuBar::item{ 12 | background-color:#1d1d1d; 13 | color:#fff; 14 | padding:5px; 15 | 16 | } 17 | 18 | QMenu{ 19 | color:#fff; 20 | padding:0; 21 | } 22 | 23 | QMenu::item:selected{ 24 | color:#fff; 25 | background-color:#00aba9; 26 | } 27 | 28 | QTableWidget{ 29 | background-color:#3d3d3d; 30 | color:#fff; 31 | selection-background-color: #da532c; 32 | border:solid; 33 | border-width:3px; 34 | border-color:#da532c; 35 | } 36 | QHeaderView::section{ 37 | background-color:qlineargradient(spread:pad, x1:0, y1:0, x2:1, y2:0, stop:0 rgba(20, 158, 217, 255), stop:1 rgba(36, 158, 217, 255)); 38 | border:none; 39 | border-top-style:solid; 40 | border-width:1px; 41 | border-top-color:qlineargradient(spread:pad, x1:0, y1:0, x2:1, y2:0, stop:0 rgba(20, 158, 217, 255), stop:1 rgba(36, 158, 217, 255)); 42 | color:#fff; 43 | 44 | } 45 | QHeaderView{ 46 | background-color:qlineargradient(spread:pad, x1:0, y1:0, x2:1, y2:0, stop:0 rgba(20, 158, 217, 255), stop:1 rgba(36, 158, 217, 255)); 47 | 48 | border:none; 49 | border-top-style:solid; 50 | border-width:1px; 51 | border-top-color:#149ED9; 52 | color:#fff; 53 | font: 75 12pt "Calibri"; 54 | } 55 | 56 | QTableCornerButton::section{ 57 | border:none; 58 | background-color:#149ED9; 59 | } 60 | 61 | QListWidget{ 62 | background-color:#3d3d3d; 63 | color:#fff; 64 | } 65 | 66 | QMenu{ 67 | background-color:#3d3d3d; 68 | } 69 | QStatusBar{ 70 | background-color:#7e3878; 71 | color:#fff; 72 | } 73 | 74 | QPushButton{ 75 | border-style:solid; 76 | 77 | background-color:#3d3d3d; 78 | color:#fff; 79 | border-radius:7px; 80 | } 81 | QPushButton:hover{ 82 | color:#ccc; 83 | background-color: qlineargradient(spread:pad, x1:0.517, y1:0, x2:0.517, y2:1, stop:0 rgba(45, 45, 45, 255), stop:0.505682 rgba(45, 45, 45, 255), stop:1 rgba(29, 29, 29, 255)); 84 | border-color:#2d89ef; 85 | border-width:2px; 86 | } 87 | 88 | QPushButton:pressed{ 89 | background-color: qlineargradient(spread:pad, x1:0.517, y1:0, x2:0.517, y2:1, stop:0 rgba(29, 29, 29, 255), stop:0.505682 rgba(45, 45, 45, 255), stop:1 rgba(29, 29, 29, 255)); 90 | } 91 | 92 | 93 | QTabWidget::tab{ 94 | background-color:#3d3d3d; 95 | } 96 | 97 | QLineEdit{ 98 | border-radius:0; 99 | } 100 | 101 | QProgressBar{ 102 | border-radius:0; 103 | text-align:center; 104 | color:#fff; 105 | background-color:transparent; 106 | border: 2px solid #e3a21a; 107 | border-radius:7px; 108 | font: 75 12pt "Open Sans"; 109 | 110 | } 111 | 112 | QProgressBar::chunk{ 113 | background-color:#2d89ef; 114 | width:20px; 115 | } -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | License 2 | The MIT License (MIT) 3 | 4 | Copyright (c) [2015] [TheOpenDevProject] 5 | 6 | Permission is hereby granted, free of charge, to any person obtaining a copy 7 | of this software and associated documentation files (the "Software"), to deal 8 | in the Software without restriction, including without limitation the rights 9 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | copies of the Software, and to permit persons to whom the Software is 11 | furnished to do so, subject to the following conditions: 12 | 13 | The above copyright notice and this permission notice shall be included in all 14 | copies or substantial portions of the Software. 15 | 16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | SOFTWARE. 23 | 24 | 25 | ########################## 26 | A collection of QSS stylesheets created by me and others to help you focus on your application/flow rather than 27 | UI design 28 | ########################## 29 | 30 | Credits: TheOpenDevProject (MetroUI) 31 | ![alt tag](http://i.imgur.com/lADxXGa.png) 32 | --------------------------------------------------------------------------------