├── README.md ├── library management ├── database │ └── app.db ├── images │ ├── 1.jpg │ ├── 4.jpg │ └── Book Library.ico ├── notices │ └── notice.txt ├── run.bat ├── run.ipynb ├── run.py └── ui pages │ ├── admin_add_user.ui │ ├── admin_home.ui │ ├── admin_see_feedbacks.ui │ ├── admin_template.ui │ ├── edit_details.ui │ ├── error_register.ui │ ├── forgot_password.ui │ ├── librarian_add_new_book.ui │ ├── librarian_add_new_units.ui │ ├── librarian_change_rack.ui │ ├── librarian_home.ui │ ├── librarian_issue_book.ui │ ├── librarian_remove_books.ui │ ├── librarian_return_book.ui │ ├── librarian_template.ui │ ├── login.ui │ ├── member_feedback.ui │ ├── member_home.ui │ ├── member_issued_books.ui │ ├── member_search_books.ui │ ├── member_template.ui │ ├── register.ui │ ├── success_forgot.ui │ ├── success_register.ui │ └── success_update.ui └── run ├── MSVCP140.dll ├── PyQt5 ├── Library │ └── bin │ │ └── qt.conf ├── Qt │ ├── plugins │ │ ├── iconengines │ │ │ └── qsvgicon.dll │ │ ├── imageformats │ │ │ ├── qgif.dll │ │ │ ├── qicns.dll │ │ │ ├── qico.dll │ │ │ ├── qjpeg.dll │ │ │ ├── qsvg.dll │ │ │ ├── qtga.dll │ │ │ ├── qtiff.dll │ │ │ ├── qwbmp.dll │ │ │ └── qwebp.dll │ │ ├── platforminputcontexts │ │ │ └── qtvirtualkeyboardplugin.dll │ │ └── platforms │ │ │ ├── qminimal.dll │ │ │ ├── qoffscreen.dll │ │ │ └── qwindows.dll │ └── translations │ │ ├── qtbase_ar.qm │ │ ├── qtbase_bg.qm │ │ ├── qtbase_ca.qm │ │ ├── qtbase_cs.qm │ │ ├── qtbase_da.qm │ │ ├── qtbase_de.qm │ │ ├── qtbase_en.qm │ │ ├── qtbase_es.qm │ │ ├── qtbase_fi.qm │ │ ├── qtbase_fr.qm │ │ ├── qtbase_gd.qm │ │ ├── qtbase_he.qm │ │ ├── qtbase_hu.qm │ │ ├── qtbase_it.qm │ │ ├── qtbase_ja.qm │ │ ├── qtbase_ko.qm │ │ ├── qtbase_lv.qm │ │ ├── qtbase_pl.qm │ │ ├── qtbase_ru.qm │ │ ├── qtbase_sk.qm │ │ └── qtbase_uk.qm ├── QtCore.pyd ├── QtGui.pyd ├── QtWidgets.pyd └── uic │ └── widget-plugins │ ├── __pycache__ │ ├── qaxcontainer.cpython-37.pyc │ ├── qscintilla.cpython-37.pyc │ ├── qtcharts.cpython-37.pyc │ ├── qtprintsupport.cpython-37.pyc │ ├── qtquickwidgets.cpython-37.pyc │ ├── qtwebenginewidgets.cpython-37.pyc │ └── qtwebkit.cpython-37.pyc │ ├── qaxcontainer.py │ ├── qscintilla.py │ ├── qtcharts.py │ ├── qtprintsupport.py │ ├── qtquickwidgets.py │ ├── qtwebenginewidgets.py │ └── qtwebkit.py ├── Qt5Core.dll ├── Qt5Gui.dll ├── Qt5Network.dll ├── Qt5Qml.dll ├── Qt5Quick.dll ├── Qt5Svg.dll ├── Qt5Widgets.dll ├── VCRUNTIME140.dll ├── _bz2.pyd ├── _ctypes.pyd ├── _elementtree.pyd ├── _hashlib.pyd ├── _lzma.pyd ├── _queue.pyd ├── _socket.pyd ├── _sqlite3.pyd ├── _ssl.pyd ├── api-ms-win-core-console-l1-1-0.dll ├── api-ms-win-core-datetime-l1-1-0.dll ├── api-ms-win-core-debug-l1-1-0.dll ├── api-ms-win-core-errorhandling-l1-1-0.dll ├── api-ms-win-core-file-l1-1-0.dll ├── api-ms-win-core-file-l1-2-0.dll ├── api-ms-win-core-file-l2-1-0.dll ├── api-ms-win-core-handle-l1-1-0.dll ├── api-ms-win-core-heap-l1-1-0.dll ├── api-ms-win-core-interlocked-l1-1-0.dll ├── api-ms-win-core-libraryloader-l1-1-0.dll ├── api-ms-win-core-localization-l1-2-0.dll ├── api-ms-win-core-memory-l1-1-0.dll ├── api-ms-win-core-namedpipe-l1-1-0.dll ├── api-ms-win-core-processenvironment-l1-1-0.dll ├── api-ms-win-core-processthreads-l1-1-0.dll ├── api-ms-win-core-processthreads-l1-1-1.dll ├── api-ms-win-core-profile-l1-1-0.dll ├── api-ms-win-core-rtlsupport-l1-1-0.dll ├── api-ms-win-core-string-l1-1-0.dll ├── api-ms-win-core-synch-l1-1-0.dll ├── api-ms-win-core-synch-l1-2-0.dll ├── api-ms-win-core-sysinfo-l1-1-0.dll ├── api-ms-win-core-timezone-l1-1-0.dll ├── api-ms-win-core-util-l1-1-0.dll ├── api-ms-win-crt-conio-l1-1-0.dll ├── api-ms-win-crt-convert-l1-1-0.dll ├── api-ms-win-crt-environment-l1-1-0.dll ├── api-ms-win-crt-filesystem-l1-1-0.dll ├── api-ms-win-crt-heap-l1-1-0.dll ├── api-ms-win-crt-locale-l1-1-0.dll ├── api-ms-win-crt-math-l1-1-0.dll ├── api-ms-win-crt-process-l1-1-0.dll ├── api-ms-win-crt-runtime-l1-1-0.dll ├── api-ms-win-crt-stdio-l1-1-0.dll ├── api-ms-win-crt-string-l1-1-0.dll ├── api-ms-win-crt-time-l1-1-0.dll ├── api-ms-win-crt-utility-l1-1-0.dll ├── base_library.zip ├── database └── app.db ├── icudt58.dll ├── icuin58.dll ├── icuuc58.dll ├── images ├── 1.jpg ├── 4.jpg └── Book Library.ico ├── libcrypto-1_1-x64.dll ├── libjpeg.dll ├── libpng16.dll ├── libssl-1_1-x64.dll ├── notices └── notice.txt ├── opengl32sw.dll ├── pyexpat.pyd ├── python3.dll ├── python37.dll ├── pywintypes37.dll ├── run.exe ├── run.exe.manifest ├── select.pyd ├── sip.pyd ├── sqlite3.dll ├── ucrtbase.dll ├── ui pages ├── admin_add_user.ui ├── admin_home.ui ├── admin_see_feedbacks.ui ├── admin_template.ui ├── edit_details.ui ├── error_register.ui ├── forgot_password.ui ├── librarian_add_new_book.ui ├── librarian_add_new_units.ui ├── librarian_change_rack.ui ├── librarian_home.ui ├── librarian_issue_book.ui ├── librarian_remove_books.ui ├── librarian_return_book.ui ├── librarian_template.ui ├── login.ui ├── member_feedback.ui ├── member_home.ui ├── member_issued_books.ui ├── member_search_books.ui ├── member_template.ui ├── register.ui ├── success_forgot.ui ├── success_register.ui └── success_update.ui ├── unicodedata.pyd ├── win32api.pyd ├── win32evtlog.pyd └── zlib.dll /README.md: -------------------------------------------------------------------------------- 1 | # Library-Management-System 2 | ---------------------------- 3 | This project is soely for teaching purpose only. Other uses of this project should be restricted. 4 | 5 |

To Run the Project directly without installing aything

(all you need is only the run folder) 6 |

Goto run folder --> double click on run.exe (with books icon)

7 | 8 | This project requires some additional packages for python to run. 9 | 10 | 1. PyQt5 - to install run pip install PyQt5 in command prompt 11 | 2. sqlite3 - to install run pip install pysqlite in command prompt 12 | 3. optionally you can install DB browser for sqlite to see the database structure and data 13 | 14 | Default Users 15 | -------------- 16 | Here some Users are already created like 17 | 1. Username - Test Admin
18 | User id - 100
19 | Password - admin@123
20 | 2. Username - Test Librarian
21 | User id - 101
22 | Password - library@123
23 | 3. Username - Test Member
24 | User id - 102
25 | Password - member@123
26 | 27 | How to create other Users 28 | ------------------------- 29 | For creating any Type of User First you have to create a new user by register option. 30 | By default the user will be created as member only. 31 | Then by logging in as admin (or default admin) you can change the user type as admin or librarian. 32 | 33 | only admin can give different access to users and check the feedbacks 34 | only librarian can add book, manage book, issue book to members and return books from user 35 | 36 | where as members can search for books and see their history of issued books, also they can submit feedback 37 | 38 | To change the notice 39 | -------------------- 40 | 1. write the notice in notice.txt 41 | present in notice folder 42 | 2. save the file 43 | 3. restart the program 44 | 45 | Database 46 | -------- 47 | The database for the project is present in database folder called app.db 48 | The database can be visualised using DB browser for Sqlite or any other sqlite browser applications. 49 | 50 | UI files 51 | -------- 52 | All the GUI files are present in the Ui pages folder 53 | 54 | -------------------------------------------------------------------------------- /library management/database/app.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/library management/database/app.db -------------------------------------------------------------------------------- /library management/images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/library management/images/1.jpg -------------------------------------------------------------------------------- /library management/images/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/library management/images/4.jpg -------------------------------------------------------------------------------- /library management/images/Book Library.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/library management/images/Book Library.ico -------------------------------------------------------------------------------- /library management/notices/notice.txt: -------------------------------------------------------------------------------- 1 | This is a notice -------------------------------------------------------------------------------- /library management/run.bat: -------------------------------------------------------------------------------- 1 | python run.py -------------------------------------------------------------------------------- /library management/ui pages/admin_template.ui: -------------------------------------------------------------------------------- 1 | 2 | 3 | MainWindow 4 | 5 | 6 | 7 | 0 8 | 0 9 | 640 10 | 480 11 | 12 | 13 | 14 | 15 | 640 16 | 480 17 | 18 | 19 | 20 | 21 | 640 22 | 480 23 | 24 | 25 | 26 | MainWindow 27 | 28 | 29 | 30 | 31 | 32 | 0 33 | 0 34 | 640 35 | 50 36 | 37 | 38 | 39 | background-color: rgb(0, 0, 0); 40 | color: rgb(255, 255, 255); 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 100 50 | 0 51 | 100 52 | 50 53 | 54 | 55 | 56 | 57 | 10 58 | 75 59 | true 60 | 61 | 62 | 63 | color: rgb(255, 255, 255); 64 | background-color: qlineargradient(spread:pad, x1:0.284864, y1:0.233, x2:1, y2:1, stop:0 rgba(0, 0, 0, 255), stop:1 rgba(176, 165, 232, 255)); 65 | 66 | 67 | Add User 68 | 69 | 70 | false 71 | 72 | 73 | 74 | 75 | 76 | 0 77 | 0 78 | 100 79 | 50 80 | 81 | 82 | 83 | 84 | 14 85 | 75 86 | true 87 | 88 | 89 | 90 | color: rgb(255, 255, 255); 91 | background-color: rgb(0, 140, 186); 92 | 93 | 94 | Home 95 | 96 | 97 | Qt::AlignCenter 98 | 99 | 100 | 101 | 102 | 103 | 200 104 | 0 105 | 100 106 | 50 107 | 108 | 109 | 110 | 111 | 10 112 | 75 113 | true 114 | 115 | 116 | 117 | color: rgb(255, 255, 255); 118 | background-color: qlineargradient(spread:pad, x1:0.284864, y1:0.233, x2:1, y2:1, stop:0 rgba(0, 0, 0, 255), stop:1 rgba(176, 165, 232, 255)); 119 | 120 | 121 | See Feedbacks 122 | 123 | 124 | 125 | 126 | 127 | 300 128 | 0 129 | 100 130 | 50 131 | 132 | 133 | 134 | 135 | 10 136 | 75 137 | true 138 | 139 | 140 | 141 | color: rgb(255, 255, 255); 142 | background-color: qlineargradient(spread:pad, x1:0.284864, y1:0.233, x2:1, y2:1, stop:0 rgba(0, 0, 0, 255), stop:1 rgba(176, 165, 232, 255)); 143 | 144 | 145 | DB works 146 | 147 | 148 | 149 | 150 | 151 | 540 152 | 0 153 | 100 154 | 50 155 | 156 | 157 | 158 | 159 | 10 160 | 75 161 | true 162 | 163 | 164 | 165 | color: rgb(255, 255, 255); 166 | background-color: rgb(255, 0, 0); 167 | 168 | 169 | Log out 170 | 171 | 172 | 173 | 174 | 175 | 320 176 | 460 177 | 320 178 | 20 179 | 180 | 181 | 182 | background-color: rgb(0, 0, 0); 183 | color: rgb(255, 255, 255); 184 | 185 | 186 | Logged in at 187 | 188 | 189 | Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter 190 | 191 | 192 | 193 | 194 | 195 | 0 196 | 50 197 | 200 198 | 410 199 | 200 | 201 | 202 | background-color: rgb(255, 170, 127); 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 0 212 | 460 213 | 320 214 | 20 215 | 216 | 217 | 218 | background-color: rgb(0, 0, 0); 219 | color: rgb(255, 255, 255); 220 | 221 | 222 | Logged in by 223 | 224 | 225 | Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter 226 | 227 | 228 | 229 | 230 | 231 | 232 | 233 | -------------------------------------------------------------------------------- /library management/ui pages/error_register.ui: -------------------------------------------------------------------------------- 1 | 2 | 3 | MainWindow 4 | 5 | 6 | 7 | 0 8 | 0 9 | 480 10 | 240 11 | 12 | 13 | 14 | 15 | 480 16 | 240 17 | 18 | 19 | 20 | 21 | 480 22 | 240 23 | 24 | 25 | 26 | MainWindow 27 | 28 | 29 | background-color: rgb(255, 200, 200); 30 | 31 | 32 | 33 | 34 | 35 | 10 36 | 10 37 | 460 38 | 30 39 | 40 | 41 | 42 | 43 | 14 44 | 75 45 | true 46 | 47 | 48 | 49 | background-color: rgba(255, 255, 255,0); 50 | color: rgb(255, 0, 0); 51 | 52 | 53 | Oops!! Unable to register due to 54 | 55 | 56 | 57 | 58 | 59 | 10 60 | 60 61 | 460 62 | 100 63 | 64 | 65 | 66 | 67 | 10 68 | 75 69 | true 70 | 71 | 72 | 73 | background-color: rgba(255, 255, 255, 0); 74 | color: rgb(255, 0, 0); 75 | 76 | 77 | Error message will come here 78 | 79 | 80 | Qt::AlignCenter 81 | 82 | 83 | 84 | 85 | 86 | 10 87 | 200 88 | 460 89 | 30 90 | 91 | 92 | 93 | 94 | 10 95 | 75 96 | true 97 | 98 | 99 | 100 | background-color: rgb(255, 0, 0); 101 | 102 | 103 | Close and Continue 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | -------------------------------------------------------------------------------- /library management/ui pages/forgot_password.ui: -------------------------------------------------------------------------------- 1 | 2 | 3 | MainWindow 4 | 5 | 6 | 7 | 0 8 | 0 9 | 640 10 | 480 11 | 12 | 13 | 14 | 15 | 640 16 | 480 17 | 18 | 19 | 20 | 21 | 640 22 | 480 23 | 24 | 25 | 26 | MainWindow 27 | 28 | 29 | 30 | 31 | 32 | 50 33 | 50 34 | 540 35 | 40 36 | 37 | 38 | 39 | 40 | 20 41 | 75 42 | true 43 | 44 | 45 | 46 | Forgot Password / Inactive member ? 47 | 48 | 49 | Qt::AlignCenter 50 | 51 | 52 | 53 | 54 | 55 | 50 56 | 100 57 | 540 58 | 20 59 | 60 | 61 | 62 | 63 | 75 64 | true 65 | 66 | 67 | 68 | No problem just fill some details below 69 | 70 | 71 | Qt::AlignCenter 72 | 73 | 74 | 75 | 76 | 77 | 100 78 | 160 79 | 150 80 | 20 81 | 82 | 83 | 84 | 85 | 14 86 | 75 87 | true 88 | 89 | 90 | 91 | ID 92 | 93 | 94 | 95 | 96 | 97 | 100 98 | 210 99 | 150 100 | 20 101 | 102 | 103 | 104 | 105 | 14 106 | 75 107 | true 108 | 109 | 110 | 111 | Aadhaar No 112 | 113 | 114 | 115 | 116 | 117 | 100 118 | 290 119 | 150 120 | 20 121 | 122 | 123 | 124 | 125 | 14 126 | 75 127 | true 128 | 129 | 130 | 131 | New Password 132 | 133 | 134 | 135 | 136 | 137 | 270 138 | 160 139 | 250 140 | 25 141 | 142 | 143 | 144 | 145 | 10 146 | 75 147 | true 148 | 149 | 150 | 151 | 152 | 153 | 154 | 270 155 | 210 156 | 250 157 | 25 158 | 159 | 160 | 161 | 162 | 10 163 | 75 164 | true 165 | 166 | 167 | 168 | 169 | 170 | 171 | 270 172 | 290 173 | 250 174 | 25 175 | 176 | 177 | 178 | 179 | 10 180 | 75 181 | true 182 | 183 | 184 | 185 | QLineEdit::Password 186 | 187 | 188 | 189 | 190 | 191 | 50 192 | 250 193 | 540 194 | 20 195 | 196 | 197 | 198 | 199 | 10 200 | 75 201 | true 202 | 203 | 204 | 205 | 206 | 207 | 208 | Qt::AlignCenter 209 | 210 | 211 | 212 | 213 | 214 | 319 215 | 360 216 | 201 217 | 40 218 | 219 | 220 | 221 | 222 | 10 223 | 75 224 | true 225 | 226 | 227 | 228 | background-color: rgb(0, 255, 0); 229 | 230 | 231 | Verify and Proceed 232 | 233 | 234 | 235 | 236 | 237 | 100 238 | 360 239 | 171 240 | 40 241 | 242 | 243 | 244 | 245 | 10 246 | 75 247 | true 248 | 249 | 250 | 251 | background-color: rgb(255, 0, 0); 252 | 253 | 254 | Back to home 255 | 256 | 257 | 258 | 259 | 260 | 261 | 262 | -------------------------------------------------------------------------------- /library management/ui pages/librarian_remove_books.ui: -------------------------------------------------------------------------------- 1 | 2 | 3 | MainWindow 4 | 5 | 6 | 7 | 0 8 | 0 9 | 640 10 | 480 11 | 12 | 13 | 14 | 15 | 640 16 | 480 17 | 18 | 19 | 20 | 21 | 640 22 | 480 23 | 24 | 25 | 26 | MainWindow 27 | 28 | 29 | 30 | 31 | 32 | 0 33 | 0 34 | 640 35 | 50 36 | 37 | 38 | 39 | background-color: rgb(0, 0, 0); 40 | color: rgb(255, 255, 255); 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 0 50 | 0 51 | 100 52 | 50 53 | 54 | 55 | 56 | 57 | 10 58 | 75 59 | true 60 | 61 | 62 | 63 | color: rgb(255, 255, 255); 64 | background-color: qlineargradient(spread:pad, x1:0.284864, y1:0.233, x2:1, y2:1, stop:0 rgba(0, 0, 0, 255), stop:1 rgba(176, 165, 232, 255)); 65 | 66 | 67 | Home 68 | 69 | 70 | 71 | 72 | 73 | 200 74 | 0 75 | 100 76 | 50 77 | 78 | 79 | 80 | 81 | 14 82 | 75 83 | true 84 | 85 | 86 | 87 | color: rgb(255, 255, 255); 88 | background-color: rgb(0, 140, 186); 89 | 90 | 91 | Remove Book 92 | 93 | 94 | Qt::AlignCenter 95 | 96 | 97 | true 98 | 99 | 100 | 101 | 102 | 103 | 100 104 | 0 105 | 100 106 | 50 107 | 108 | 109 | 110 | 111 | 10 112 | 75 113 | true 114 | 115 | 116 | 117 | color: rgb(255, 255, 255); 118 | background-color: qlineargradient(spread:pad, x1:0.284864, y1:0.233, x2:1, y2:1, stop:0 rgba(0, 0, 0, 255), stop:1 rgba(176, 165, 232, 255)); 119 | 120 | 121 | Add Book 122 | 123 | 124 | 125 | 126 | 127 | 300 128 | 0 129 | 100 130 | 50 131 | 132 | 133 | 134 | 135 | 10 136 | 75 137 | true 138 | 139 | 140 | 141 | color: rgb(255, 255, 255); 142 | background-color: qlineargradient(spread:pad, x1:0.284864, y1:0.233, x2:1, y2:1, stop:0 rgba(0, 0, 0, 255), stop:1 rgba(176, 165, 232, 255)); 143 | 144 | 145 | Manage Book 146 | 147 | 148 | 149 | 150 | 151 | 540 152 | 0 153 | 100 154 | 50 155 | 156 | 157 | 158 | 159 | 10 160 | 75 161 | true 162 | 163 | 164 | 165 | color: rgb(255, 255, 255); 166 | background-color: rgb(255, 0, 0); 167 | 168 | 169 | Log out 170 | 171 | 172 | 173 | 174 | 175 | 320 176 | 460 177 | 320 178 | 20 179 | 180 | 181 | 182 | background-color: rgb(0, 0, 0); 183 | color: rgb(255, 255, 255); 184 | 185 | 186 | Logged in at 187 | 188 | 189 | Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter 190 | 191 | 192 | 193 | 194 | 195 | 0 196 | 50 197 | 200 198 | 410 199 | 200 | 201 | 202 | background-color: rgb(255, 170, 127); 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 0 212 | 460 213 | 320 214 | 20 215 | 216 | 217 | 218 | background-color: rgb(0, 0, 0); 219 | color: rgb(255, 255, 255); 220 | 221 | 222 | Logged in by 223 | 224 | 225 | Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter 226 | 227 | 228 | 229 | 230 | 231 | 250 232 | 130 233 | 340 234 | 30 235 | 236 | 237 | 238 | 239 | 12 240 | 75 241 | true 242 | 243 | 244 | 245 | Add Book to Library 246 | 247 | 248 | Qt::AlignCenter 249 | 250 | 251 | 252 | 253 | 254 | 250 255 | 180 256 | 120 257 | 25 258 | 259 | 260 | 261 | 262 | 12 263 | 75 264 | true 265 | 266 | 267 | 268 | border:2px solid; 269 | border-color: rgb(0, 255, 0); 270 | background-color: rgb(170, 85, 127); 271 | color: rgb(255, 255, 255); 272 | 273 | 274 | Book ID 275 | 276 | 277 | 278 | 279 | 280 | 250 281 | 250 282 | 361 283 | 30 284 | 285 | 286 | 287 | 288 | 10 289 | 75 290 | true 291 | 292 | 293 | 294 | background-color: rgb(198, 157, 255); 295 | 296 | 297 | Add Units 298 | 299 | 300 | 301 | 302 | 303 | 390 304 | 180 305 | 220 306 | 25 307 | 308 | 309 | 310 | 311 | 10 312 | 75 313 | true 314 | 315 | 316 | 317 | border:2px solid; 318 | border-color: rgb(0, 255, 0); 319 | 320 | 321 | 322 | 323 | 324 | 250 325 | 310 326 | 360 327 | 25 328 | 329 | 330 | 331 | 332 | 75 333 | true 334 | 335 | 336 | 337 | 338 | 339 | 340 | Qt::AlignCenter 341 | 342 | 343 | 344 | 345 | 346 | 347 | 348 | -------------------------------------------------------------------------------- /library management/ui pages/librarian_template.ui: -------------------------------------------------------------------------------- 1 | 2 | 3 | MainWindow 4 | 5 | 6 | 7 | 0 8 | 0 9 | 640 10 | 480 11 | 12 | 13 | 14 | 15 | 640 16 | 480 17 | 18 | 19 | 20 | 21 | 640 22 | 480 23 | 24 | 25 | 26 | MainWindow 27 | 28 | 29 | 30 | 31 | 32 | 0 33 | 0 34 | 640 35 | 50 36 | 37 | 38 | 39 | background-color: rgb(0, 0, 0); 40 | color: rgb(255, 255, 255); 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 100 50 | 0 51 | 100 52 | 50 53 | 54 | 55 | 56 | 57 | 10 58 | 75 59 | true 60 | 61 | 62 | 63 | color: rgb(255, 255, 255); 64 | background-color: qlineargradient(spread:pad, x1:0.284864, y1:0.233, x2:1, y2:1, stop:0 rgba(0, 0, 0, 255), stop:1 rgba(176, 165, 232, 255)); 65 | 66 | 67 | Add Book 68 | 69 | 70 | 71 | 72 | 73 | 0 74 | 0 75 | 100 76 | 50 77 | 78 | 79 | 80 | 81 | 14 82 | 75 83 | true 84 | 85 | 86 | 87 | color: rgb(255, 255, 255); 88 | background-color: rgb(0, 140, 186); 89 | 90 | 91 | Home 92 | 93 | 94 | Qt::AlignCenter 95 | 96 | 97 | 98 | 99 | 100 | 200 101 | 0 102 | 100 103 | 50 104 | 105 | 106 | 107 | 108 | 10 109 | 75 110 | true 111 | 112 | 113 | 114 | color: rgb(255, 255, 255); 115 | background-color: qlineargradient(spread:pad, x1:0.284864, y1:0.233, x2:1, y2:1, stop:0 rgba(0, 0, 0, 255), stop:1 rgba(176, 165, 232, 255)); 116 | 117 | 118 | Remove Book 119 | 120 | 121 | 122 | 123 | 124 | 300 125 | 0 126 | 100 127 | 50 128 | 129 | 130 | 131 | 132 | 10 133 | 75 134 | true 135 | 136 | 137 | 138 | color: rgb(255, 255, 255); 139 | background-color: qlineargradient(spread:pad, x1:0.284864, y1:0.233, x2:1, y2:1, stop:0 rgba(0, 0, 0, 255), stop:1 rgba(176, 165, 232, 255)); 140 | 141 | 142 | Manage Book 143 | 144 | 145 | 146 | 147 | 148 | 540 149 | 0 150 | 100 151 | 50 152 | 153 | 154 | 155 | 156 | 10 157 | 75 158 | true 159 | 160 | 161 | 162 | color: rgb(255, 255, 255); 163 | background-color: rgb(255, 0, 0); 164 | 165 | 166 | Log out 167 | 168 | 169 | 170 | 171 | 172 | 320 173 | 460 174 | 320 175 | 20 176 | 177 | 178 | 179 | background-color: rgb(0, 0, 0); 180 | color: rgb(255, 255, 255); 181 | 182 | 183 | Logged in at 184 | 185 | 186 | Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter 187 | 188 | 189 | 190 | 191 | 192 | 0 193 | 50 194 | 200 195 | 410 196 | 197 | 198 | 199 | background-color: rgb(255, 170, 127); 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 0 209 | 460 210 | 320 211 | 20 212 | 213 | 214 | 215 | background-color: rgb(0, 0, 0); 216 | color: rgb(255, 255, 255); 217 | 218 | 219 | Logged in by 220 | 221 | 222 | Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter 223 | 224 | 225 | 226 | 227 | 228 | 10 229 | 180 230 | 180 231 | 40 232 | 233 | 234 | 235 | 236 | 10 237 | 75 238 | true 239 | 240 | 241 | 242 | background-color: rgb(170, 0, 255); 243 | color: rgb(255, 255, 255); 244 | 245 | 246 | As Member 247 | 248 | 249 | 250 | 251 | 252 | 10 253 | 280 254 | 180 255 | 40 256 | 257 | 258 | 259 | 260 | 10 261 | 75 262 | true 263 | 264 | 265 | 266 | background-color: rgb(170, 0, 255); 267 | color: rgb(255, 255, 255); 268 | 269 | 270 | Edit Details 271 | 272 | 273 | 274 | 275 | 276 | 277 | 278 | -------------------------------------------------------------------------------- /library management/ui pages/member_feedback.ui: -------------------------------------------------------------------------------- 1 | 2 | 3 | MainWindow 4 | 5 | 6 | 7 | 0 8 | 0 9 | 640 10 | 480 11 | 12 | 13 | 14 | 15 | 640 16 | 480 17 | 18 | 19 | 20 | 21 | 640 22 | 480 23 | 24 | 25 | 26 | MainWindow 27 | 28 | 29 | background-color: rgb(255, 245, 202); 30 | 31 | 32 | 33 | 34 | 35 | 0 36 | 0 37 | 640 38 | 50 39 | 40 | 41 | 42 | background-color: rgb(0, 0, 0); 43 | color: rgb(255, 255, 255); 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 0 53 | 0 54 | 100 55 | 50 56 | 57 | 58 | 59 | 60 | 10 61 | 75 62 | true 63 | 64 | 65 | 66 | color: rgb(255, 255, 255); 67 | background-color: qlineargradient(spread:pad, x1:0.284864, y1:0.233, x2:1, y2:1, stop:0 rgba(0, 0, 0, 255), stop:1 rgba(176, 165, 232, 255)); 68 | 69 | 70 | Home 71 | 72 | 73 | 74 | 75 | 76 | 300 77 | 0 78 | 100 79 | 50 80 | 81 | 82 | 83 | 84 | 14 85 | 75 86 | true 87 | 88 | 89 | 90 | color: rgb(255, 255, 255); 91 | background-color: rgb(0, 140, 186); 92 | 93 | 94 | Feedback 95 | 96 | 97 | Qt::AlignCenter 98 | 99 | 100 | true 101 | 102 | 103 | 104 | 105 | 106 | 100 107 | 0 108 | 100 109 | 50 110 | 111 | 112 | 113 | 114 | 10 115 | 75 116 | true 117 | 118 | 119 | 120 | color: rgb(255, 255, 255); 121 | background-color: qlineargradient(spread:pad, x1:0.284864, y1:0.233, x2:1, y2:1, stop:0 rgba(0, 0, 0, 255), stop:1 rgba(176, 165, 232, 255)); 122 | 123 | 124 | Search books 125 | 126 | 127 | 128 | 129 | 130 | 200 131 | 0 132 | 100 133 | 50 134 | 135 | 136 | 137 | 138 | 10 139 | 75 140 | true 141 | 142 | 143 | 144 | color: rgb(255, 255, 255); 145 | background-color: qlineargradient(spread:pad, x1:0.284864, y1:0.233, x2:1, y2:1, stop:0 rgba(0, 0, 0, 255), stop:1 rgba(176, 165, 232, 255)); 146 | 147 | 148 | Issued Books 149 | 150 | 151 | 152 | 153 | 154 | 540 155 | 0 156 | 100 157 | 50 158 | 159 | 160 | 161 | 162 | 10 163 | 75 164 | true 165 | 166 | 167 | 168 | color: rgb(255, 255, 255); 169 | background-color: rgb(255, 0, 0); 170 | 171 | 172 | Log out 173 | 174 | 175 | 176 | 177 | 178 | 320 179 | 460 180 | 320 181 | 20 182 | 183 | 184 | 185 | background-color: rgb(0, 0, 0); 186 | color: rgb(255, 255, 255); 187 | 188 | 189 | Logged in at 190 | 191 | 192 | Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter 193 | 194 | 195 | 196 | 197 | 198 | 0 199 | 460 200 | 320 201 | 20 202 | 203 | 204 | 205 | background-color: rgb(0, 0, 0); 206 | color: rgb(255, 255, 255); 207 | 208 | 209 | Logged in by 210 | 211 | 212 | Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter 213 | 214 | 215 | 216 | 217 | 218 | 30 219 | 70 220 | 580 221 | 30 222 | 223 | 224 | 225 | 226 | 12 227 | 75 228 | true 229 | 230 | 231 | 232 | Give feedback 233 | 234 | 235 | Qt::AlignCenter 236 | 237 | 238 | 239 | 240 | 241 | 240 242 | 340 243 | 160 244 | 40 245 | 246 | 247 | 248 | 249 | 10 250 | 75 251 | true 252 | 253 | 254 | 255 | background-color: rgb(255, 170, 0); 256 | 257 | 258 | submit 259 | 260 | 261 | 262 | 263 | 264 | 50 265 | 140 266 | 540 267 | 170 268 | 269 | 270 | 271 | 272 | 10 273 | 75 274 | true 275 | 276 | 277 | 278 | color: rgb(0, 170, 0); 279 | background-color: rgb(255, 255, 255); 280 | border: 2px solid; 281 | border-color: rgb(0, 255, 0); 282 | 283 | 284 | Enter your feedback here 285 | 286 | 287 | 288 | 289 | 290 | 50 291 | 410 292 | 540 293 | 25 294 | 295 | 296 | 297 | 298 | 75 299 | true 300 | 301 | 302 | 303 | 304 | 305 | 306 | Qt::AlignCenter 307 | 308 | 309 | 310 | 311 | 312 | 313 | 314 | -------------------------------------------------------------------------------- /library management/ui pages/member_home.ui: -------------------------------------------------------------------------------- 1 | 2 | 3 | MainWindow 4 | 5 | 6 | 7 | 0 8 | 0 9 | 640 10 | 480 11 | 12 | 13 | 14 | 15 | 640 16 | 480 17 | 18 | 19 | 20 | 21 | 640 22 | 480 23 | 24 | 25 | 26 | MainWindow 27 | 28 | 29 | 30 | 31 | 32 | 0 33 | 0 34 | 640 35 | 50 36 | 37 | 38 | 39 | background-color: rgb(0, 0, 0); 40 | color: rgb(255, 255, 255); 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 100 50 | 0 51 | 100 52 | 50 53 | 54 | 55 | 56 | 57 | 10 58 | 75 59 | true 60 | 61 | 62 | 63 | color: rgb(255, 255, 255); 64 | background-color: qlineargradient(spread:pad, x1:0.284864, y1:0.233, x2:1, y2:1, stop:0 rgba(0, 0, 0, 255), stop:1 rgba(176, 165, 232, 255)); 65 | 66 | 67 | Search book 68 | 69 | 70 | 71 | 72 | 73 | 0 74 | 0 75 | 100 76 | 50 77 | 78 | 79 | 80 | 81 | 14 82 | 75 83 | true 84 | 85 | 86 | 87 | color: rgb(255, 255, 255); 88 | background-color: rgb(0, 140, 186); 89 | 90 | 91 | Home 92 | 93 | 94 | Qt::AlignCenter 95 | 96 | 97 | 98 | 99 | 100 | 200 101 | 0 102 | 100 103 | 50 104 | 105 | 106 | 107 | 108 | 10 109 | 75 110 | true 111 | 112 | 113 | 114 | color: rgb(255, 255, 255); 115 | background-color: qlineargradient(spread:pad, x1:0.284864, y1:0.233, x2:1, y2:1, stop:0 rgba(0, 0, 0, 255), stop:1 rgba(176, 165, 232, 255)); 116 | 117 | 118 | Issued Books 119 | 120 | 121 | 122 | 123 | 124 | 300 125 | 0 126 | 100 127 | 50 128 | 129 | 130 | 131 | 132 | 10 133 | 75 134 | true 135 | 136 | 137 | 138 | color: rgb(255, 255, 255); 139 | background-color: qlineargradient(spread:pad, x1:0.284864, y1:0.233, x2:1, y2:1, stop:0 rgba(0, 0, 0, 255), stop:1 rgba(176, 165, 232, 255)); 140 | 141 | 142 | Feedback 143 | 144 | 145 | 146 | 147 | 148 | 540 149 | 0 150 | 100 151 | 50 152 | 153 | 154 | 155 | 156 | 10 157 | 75 158 | true 159 | 160 | 161 | 162 | color: rgb(255, 255, 255); 163 | background-color: rgb(255, 0, 0); 164 | 165 | 166 | Log out 167 | 168 | 169 | 170 | 171 | 172 | 320 173 | 460 174 | 320 175 | 20 176 | 177 | 178 | 179 | background-color: rgb(0, 0, 0); 180 | color: rgb(255, 255, 255); 181 | 182 | 183 | Logged in at 184 | 185 | 186 | Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter 187 | 188 | 189 | 190 | 191 | 192 | 0 193 | 50 194 | 200 195 | 410 196 | 197 | 198 | 199 | background-color: rgb(255, 170, 127); 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 0 209 | 460 210 | 320 211 | 20 212 | 213 | 214 | 215 | background-color: rgb(0, 0, 0); 216 | color: rgb(255, 255, 255); 217 | 218 | 219 | Logged in by 220 | 221 | 222 | Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter 223 | 224 | 225 | 226 | 227 | 228 | 10 229 | 220 230 | 180 231 | 40 232 | 233 | 234 | 235 | 236 | 10 237 | 75 238 | true 239 | 240 | 241 | 242 | background-color: rgb(170, 0, 255); 243 | color: rgb(255, 255, 255); 244 | 245 | 246 | Edit Details 247 | 248 | 249 | 250 | 251 | 252 | 250 253 | 120 254 | 340 255 | 30 256 | 257 | 258 | 259 | 260 | 12 261 | 75 262 | true 263 | 264 | 265 | 266 | Hello!! 267 | 268 | 269 | Qt::AlignCenter 270 | 271 | 272 | 273 | 274 | 275 | 230 276 | 140 277 | 380 278 | 50 279 | 280 | 281 | 282 | 283 | 14 284 | 75 285 | true 286 | 287 | 288 | 289 | [desg] [username] 290 | 291 | 292 | Qt::AlignCenter 293 | 294 | 295 | 296 | 297 | 298 | 230 299 | 220 300 | 380 301 | 30 302 | 303 | 304 | 305 | 306 | 10 307 | 75 308 | true 309 | 310 | 311 | 312 | color: rgb(170, 0, 127); 313 | 314 | 315 | Thank you for being a loyal member 316 | 317 | 318 | Qt::AlignCenter 319 | 320 | 321 | 322 | 323 | 324 | 230 325 | 300 326 | 380 327 | 20 328 | 329 | 330 | 331 | 332 | 10 333 | 75 334 | true 335 | 336 | 337 | 338 | Notice(s) 339 | 340 | 341 | Qt::AlignCenter 342 | 343 | 344 | 345 | 346 | 347 | 230 348 | 320 349 | 380 350 | 120 351 | 352 | 353 | 354 | background-color: rgba(255, 255, 255, 0); 355 | 356 | 357 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> 358 | <html><head><meta name="qrichtext" content="1" /><style type="text/css"> 359 | p, li { white-space: pre-wrap; } 360 | </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> 361 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">No new notices</p></body></html> 362 | 363 | 364 | 365 | 366 | 367 | 368 | 369 | -------------------------------------------------------------------------------- /library management/ui pages/member_template.ui: -------------------------------------------------------------------------------- 1 | 2 | 3 | MainWindow 4 | 5 | 6 | 7 | 0 8 | 0 9 | 640 10 | 480 11 | 12 | 13 | 14 | 15 | 640 16 | 480 17 | 18 | 19 | 20 | 21 | 640 22 | 480 23 | 24 | 25 | 26 | MainWindow 27 | 28 | 29 | 30 | 31 | 32 | 0 33 | 0 34 | 640 35 | 50 36 | 37 | 38 | 39 | background-color: rgb(0, 0, 0); 40 | color: rgb(255, 255, 255); 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 100 50 | 0 51 | 100 52 | 50 53 | 54 | 55 | 56 | 57 | 10 58 | 75 59 | true 60 | 61 | 62 | 63 | color: rgb(255, 255, 255); 64 | background-color: qlineargradient(spread:pad, x1:0.284864, y1:0.233, x2:1, y2:1, stop:0 rgba(0, 0, 0, 255), stop:1 rgba(176, 165, 232, 255)); 65 | 66 | 67 | Search book 68 | 69 | 70 | 71 | 72 | 73 | 0 74 | 0 75 | 100 76 | 50 77 | 78 | 79 | 80 | 81 | 14 82 | 75 83 | true 84 | 85 | 86 | 87 | color: rgb(255, 255, 255); 88 | background-color: rgb(0, 140, 186); 89 | 90 | 91 | Home 92 | 93 | 94 | Qt::AlignCenter 95 | 96 | 97 | 98 | 99 | 100 | 200 101 | 0 102 | 100 103 | 50 104 | 105 | 106 | 107 | 108 | 10 109 | 75 110 | true 111 | 112 | 113 | 114 | color: rgb(255, 255, 255); 115 | background-color: qlineargradient(spread:pad, x1:0.284864, y1:0.233, x2:1, y2:1, stop:0 rgba(0, 0, 0, 255), stop:1 rgba(176, 165, 232, 255)); 116 | 117 | 118 | Issued Books 119 | 120 | 121 | 122 | 123 | 124 | 300 125 | 0 126 | 100 127 | 50 128 | 129 | 130 | 131 | 132 | 10 133 | 75 134 | true 135 | 136 | 137 | 138 | color: rgb(255, 255, 255); 139 | background-color: qlineargradient(spread:pad, x1:0.284864, y1:0.233, x2:1, y2:1, stop:0 rgba(0, 0, 0, 255), stop:1 rgba(176, 165, 232, 255)); 140 | 141 | 142 | Feedback 143 | 144 | 145 | 146 | 147 | 148 | 540 149 | 0 150 | 100 151 | 50 152 | 153 | 154 | 155 | 156 | 10 157 | 75 158 | true 159 | 160 | 161 | 162 | color: rgb(255, 255, 255); 163 | background-color: rgb(255, 0, 0); 164 | 165 | 166 | Log out 167 | 168 | 169 | 170 | 171 | 172 | 320 173 | 460 174 | 320 175 | 20 176 | 177 | 178 | 179 | background-color: rgb(0, 0, 0); 180 | color: rgb(255, 255, 255); 181 | 182 | 183 | Logged in at 184 | 185 | 186 | Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter 187 | 188 | 189 | 190 | 191 | 192 | 0 193 | 50 194 | 200 195 | 410 196 | 197 | 198 | 199 | background-color: rgb(255, 170, 127); 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 0 209 | 460 210 | 320 211 | 20 212 | 213 | 214 | 215 | background-color: rgb(0, 0, 0); 216 | color: rgb(255, 255, 255); 217 | 218 | 219 | Logged in by 220 | 221 | 222 | Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter 223 | 224 | 225 | 226 | 227 | 228 | 10 229 | 220 230 | 180 231 | 40 232 | 233 | 234 | 235 | 236 | 10 237 | 75 238 | true 239 | 240 | 241 | 242 | background-color: rgb(170, 0, 255); 243 | color: rgb(255, 255, 255); 244 | 245 | 246 | Edit Details 247 | 248 | 249 | 250 | 251 | 252 | 230 253 | 350 254 | 380 255 | 30 256 | 257 | 258 | 259 | 260 | 10 261 | 75 262 | true 263 | 264 | 265 | 266 | color: rgb(85, 0, 127); 267 | 268 | 269 | If you can find something to read thank a librarian 270 | 271 | 272 | Qt::AlignCenter 273 | 274 | 275 | 276 | 277 | 278 | 250 279 | 140 280 | 340 281 | 30 282 | 283 | 284 | 285 | 286 | 12 287 | 75 288 | true 289 | 290 | 291 | 292 | Hello!! 293 | 294 | 295 | Qt::AlignCenter 296 | 297 | 298 | 299 | 300 | 301 | 230 302 | 290 303 | 380 304 | 30 305 | 306 | 307 | 308 | 309 | 10 310 | 75 311 | true 312 | 313 | 314 | 315 | color: rgb(0, 0, 127); 316 | 317 | 318 | Librarians do not retire they just get re-shelved 319 | 320 | 321 | Qt::AlignCenter 322 | 323 | 324 | 325 | 326 | 327 | 230 328 | 160 329 | 380 330 | 50 331 | 332 | 333 | 334 | 335 | 14 336 | 75 337 | true 338 | 339 | 340 | 341 | [desg] [username] 342 | 343 | 344 | Qt::AlignCenter 345 | 346 | 347 | 348 | 349 | 350 | 230 351 | 320 352 | 380 353 | 30 354 | 355 | 356 | 357 | 358 | 10 359 | 75 360 | true 361 | 362 | 363 | 364 | color: rgb(170, 0, 127); 365 | 366 | 367 | Librarian the orginal search engine 368 | 369 | 370 | Qt::AlignCenter 371 | 372 | 373 | 374 | 375 | 376 | 377 | 378 | -------------------------------------------------------------------------------- /library management/ui pages/success_forgot.ui: -------------------------------------------------------------------------------- 1 | 2 | 3 | MainWindow 4 | 5 | 6 | 7 | 0 8 | 0 9 | 480 10 | 240 11 | 12 | 13 | 14 | 15 | 480 16 | 240 17 | 18 | 19 | 20 | 21 | 480 22 | 240 23 | 24 | 25 | 26 | MainWindow 27 | 28 | 29 | background-color: rgb(200, 255, 200); 30 | 31 | 32 | 33 | 34 | 35 | 10 36 | 200 37 | 460 38 | 30 39 | 40 | 41 | 42 | 43 | 10 44 | 75 45 | true 46 | 47 | 48 | 49 | background-color: rgb(0, 255, 0); 50 | 51 | 52 | Go to Home/ Login 53 | 54 | 55 | 56 | 57 | 58 | 10 59 | 70 60 | 460 61 | 61 62 | 63 | 64 | 65 | 66 | 10 67 | 75 68 | true 69 | 70 | 71 | 72 | background-color: rgba(255, 255, 255,0); 73 | 74 | 75 | For creating an acoount (desg) (your name) 76 | 77 | 78 | Qt::AlignCenter 79 | 80 | 81 | true 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | -------------------------------------------------------------------------------- /library management/ui pages/success_register.ui: -------------------------------------------------------------------------------- 1 | 2 | 3 | MainWindow 4 | 5 | 6 | 7 | 0 8 | 0 9 | 480 10 | 240 11 | 12 | 13 | 14 | 15 | 480 16 | 240 17 | 18 | 19 | 20 | 21 | 480 22 | 240 23 | 24 | 25 | 26 | MainWindow 27 | 28 | 29 | background-color: rgb(200, 255, 200); 30 | 31 | 32 | 33 | 34 | 35 | 10 36 | 20 37 | 460 38 | 30 39 | 40 | 41 | 42 | 43 | 14 44 | 75 45 | true 46 | 47 | 48 | 49 | background-color: rgba(255, 255, 255,0); 50 | 51 | 52 | Thank You!! 53 | 54 | 55 | Qt::AlignCenter 56 | 57 | 58 | 59 | 60 | 61 | 10 62 | 200 63 | 460 64 | 30 65 | 66 | 67 | 68 | 69 | 10 70 | 75 71 | true 72 | 73 | 74 | 75 | background-color: rgb(0, 255, 0); 76 | 77 | 78 | Go to Home/ Login 79 | 80 | 81 | 82 | 83 | 84 | 10 85 | 70 86 | 460 87 | 61 88 | 89 | 90 | 91 | 92 | 10 93 | 75 94 | true 95 | 96 | 97 | 98 | background-color: rgba(255, 255, 255,0); 99 | 100 | 101 | For creating an acoount (desg) (your name) 102 | 103 | 104 | Qt::AlignCenter 105 | 106 | 107 | true 108 | 109 | 110 | 111 | 112 | 113 | 10 114 | 140 115 | 460 116 | 31 117 | 118 | 119 | 120 | 121 | 10 122 | 75 123 | true 124 | 125 | 126 | 127 | background-color: rgba(255, 255, 255,0); 128 | 129 | 130 | You can now login with your phone number as ID 131 | 132 | 133 | Qt::AlignCenter 134 | 135 | 136 | true 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | -------------------------------------------------------------------------------- /library management/ui pages/success_update.ui: -------------------------------------------------------------------------------- 1 | 2 | 3 | MainWindow 4 | 5 | 6 | 7 | 0 8 | 0 9 | 480 10 | 240 11 | 12 | 13 | 14 | 15 | 480 16 | 240 17 | 18 | 19 | 20 | 21 | 480 22 | 240 23 | 24 | 25 | 26 | MainWindow 27 | 28 | 29 | background-color: rgb(200, 255, 200); 30 | 31 | 32 | 33 | 34 | 35 | 10 36 | 10 37 | 460 38 | 150 39 | 40 | 41 | 42 | 43 | 14 44 | 75 45 | true 46 | 47 | 48 | 49 | background-color: rgba(255, 255, 255,0); 50 | 51 | 52 | Successfully Updated !! 53 | 54 | 55 | Qt::AlignCenter 56 | 57 | 58 | 59 | 60 | 61 | 10 62 | 180 63 | 460 64 | 30 65 | 66 | 67 | 68 | 69 | 10 70 | 75 71 | true 72 | 73 | 74 | 75 | ArrowCursor 76 | 77 | 78 | background-color: rgb(0, 255, 0); 79 | 80 | 81 | Close and Back to Home 82 | 83 | 84 | false 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | -------------------------------------------------------------------------------- /run/MSVCP140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/MSVCP140.dll -------------------------------------------------------------------------------- /run/PyQt5/Library/bin/qt.conf: -------------------------------------------------------------------------------- 1 | [Paths] 2 | Prefix = C:/Users/lenoc/Anaconda3/Library 3 | Binaries = C:/Users/lenoc/Anaconda3/Library/bin 4 | Libraries = C:/Users/lenoc/Anaconda3/Library/lib 5 | Headers = C:/Users/lenoc/Anaconda3/Library/include/qt 6 | TargetSpec = win32-msvc 7 | HostSpec = win32-msvc 8 | -------------------------------------------------------------------------------- /run/PyQt5/Qt/plugins/iconengines/qsvgicon.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/PyQt5/Qt/plugins/iconengines/qsvgicon.dll -------------------------------------------------------------------------------- /run/PyQt5/Qt/plugins/imageformats/qgif.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/PyQt5/Qt/plugins/imageformats/qgif.dll -------------------------------------------------------------------------------- /run/PyQt5/Qt/plugins/imageformats/qicns.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/PyQt5/Qt/plugins/imageformats/qicns.dll -------------------------------------------------------------------------------- /run/PyQt5/Qt/plugins/imageformats/qico.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/PyQt5/Qt/plugins/imageformats/qico.dll -------------------------------------------------------------------------------- /run/PyQt5/Qt/plugins/imageformats/qjpeg.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/PyQt5/Qt/plugins/imageformats/qjpeg.dll -------------------------------------------------------------------------------- /run/PyQt5/Qt/plugins/imageformats/qsvg.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/PyQt5/Qt/plugins/imageformats/qsvg.dll -------------------------------------------------------------------------------- /run/PyQt5/Qt/plugins/imageformats/qtga.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/PyQt5/Qt/plugins/imageformats/qtga.dll -------------------------------------------------------------------------------- /run/PyQt5/Qt/plugins/imageformats/qtiff.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/PyQt5/Qt/plugins/imageformats/qtiff.dll -------------------------------------------------------------------------------- /run/PyQt5/Qt/plugins/imageformats/qwbmp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/PyQt5/Qt/plugins/imageformats/qwbmp.dll -------------------------------------------------------------------------------- /run/PyQt5/Qt/plugins/imageformats/qwebp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/PyQt5/Qt/plugins/imageformats/qwebp.dll -------------------------------------------------------------------------------- /run/PyQt5/Qt/plugins/platforminputcontexts/qtvirtualkeyboardplugin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/PyQt5/Qt/plugins/platforminputcontexts/qtvirtualkeyboardplugin.dll -------------------------------------------------------------------------------- /run/PyQt5/Qt/plugins/platforms/qminimal.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/PyQt5/Qt/plugins/platforms/qminimal.dll -------------------------------------------------------------------------------- /run/PyQt5/Qt/plugins/platforms/qoffscreen.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/PyQt5/Qt/plugins/platforms/qoffscreen.dll -------------------------------------------------------------------------------- /run/PyQt5/Qt/plugins/platforms/qwindows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/PyQt5/Qt/plugins/platforms/qwindows.dll -------------------------------------------------------------------------------- /run/PyQt5/Qt/translations/qtbase_ar.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/PyQt5/Qt/translations/qtbase_ar.qm -------------------------------------------------------------------------------- /run/PyQt5/Qt/translations/qtbase_bg.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/PyQt5/Qt/translations/qtbase_bg.qm -------------------------------------------------------------------------------- /run/PyQt5/Qt/translations/qtbase_ca.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/PyQt5/Qt/translations/qtbase_ca.qm -------------------------------------------------------------------------------- /run/PyQt5/Qt/translations/qtbase_cs.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/PyQt5/Qt/translations/qtbase_cs.qm -------------------------------------------------------------------------------- /run/PyQt5/Qt/translations/qtbase_da.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/PyQt5/Qt/translations/qtbase_da.qm -------------------------------------------------------------------------------- /run/PyQt5/Qt/translations/qtbase_de.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/PyQt5/Qt/translations/qtbase_de.qm -------------------------------------------------------------------------------- /run/PyQt5/Qt/translations/qtbase_en.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/PyQt5/Qt/translations/qtbase_en.qm -------------------------------------------------------------------------------- /run/PyQt5/Qt/translations/qtbase_es.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/PyQt5/Qt/translations/qtbase_es.qm -------------------------------------------------------------------------------- /run/PyQt5/Qt/translations/qtbase_fi.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/PyQt5/Qt/translations/qtbase_fi.qm -------------------------------------------------------------------------------- /run/PyQt5/Qt/translations/qtbase_fr.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/PyQt5/Qt/translations/qtbase_fr.qm -------------------------------------------------------------------------------- /run/PyQt5/Qt/translations/qtbase_gd.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/PyQt5/Qt/translations/qtbase_gd.qm -------------------------------------------------------------------------------- /run/PyQt5/Qt/translations/qtbase_he.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/PyQt5/Qt/translations/qtbase_he.qm -------------------------------------------------------------------------------- /run/PyQt5/Qt/translations/qtbase_hu.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/PyQt5/Qt/translations/qtbase_hu.qm -------------------------------------------------------------------------------- /run/PyQt5/Qt/translations/qtbase_it.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/PyQt5/Qt/translations/qtbase_it.qm -------------------------------------------------------------------------------- /run/PyQt5/Qt/translations/qtbase_ja.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/PyQt5/Qt/translations/qtbase_ja.qm -------------------------------------------------------------------------------- /run/PyQt5/Qt/translations/qtbase_ko.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/PyQt5/Qt/translations/qtbase_ko.qm -------------------------------------------------------------------------------- /run/PyQt5/Qt/translations/qtbase_lv.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/PyQt5/Qt/translations/qtbase_lv.qm -------------------------------------------------------------------------------- /run/PyQt5/Qt/translations/qtbase_pl.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/PyQt5/Qt/translations/qtbase_pl.qm -------------------------------------------------------------------------------- /run/PyQt5/Qt/translations/qtbase_ru.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/PyQt5/Qt/translations/qtbase_ru.qm -------------------------------------------------------------------------------- /run/PyQt5/Qt/translations/qtbase_sk.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/PyQt5/Qt/translations/qtbase_sk.qm -------------------------------------------------------------------------------- /run/PyQt5/Qt/translations/qtbase_uk.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/PyQt5/Qt/translations/qtbase_uk.qm -------------------------------------------------------------------------------- /run/PyQt5/QtCore.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/PyQt5/QtCore.pyd -------------------------------------------------------------------------------- /run/PyQt5/QtGui.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/PyQt5/QtGui.pyd -------------------------------------------------------------------------------- /run/PyQt5/QtWidgets.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/PyQt5/QtWidgets.pyd -------------------------------------------------------------------------------- /run/PyQt5/uic/widget-plugins/__pycache__/qaxcontainer.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/PyQt5/uic/widget-plugins/__pycache__/qaxcontainer.cpython-37.pyc -------------------------------------------------------------------------------- /run/PyQt5/uic/widget-plugins/__pycache__/qscintilla.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/PyQt5/uic/widget-plugins/__pycache__/qscintilla.cpython-37.pyc -------------------------------------------------------------------------------- /run/PyQt5/uic/widget-plugins/__pycache__/qtcharts.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/PyQt5/uic/widget-plugins/__pycache__/qtcharts.cpython-37.pyc -------------------------------------------------------------------------------- /run/PyQt5/uic/widget-plugins/__pycache__/qtprintsupport.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/PyQt5/uic/widget-plugins/__pycache__/qtprintsupport.cpython-37.pyc -------------------------------------------------------------------------------- /run/PyQt5/uic/widget-plugins/__pycache__/qtquickwidgets.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/PyQt5/uic/widget-plugins/__pycache__/qtquickwidgets.cpython-37.pyc -------------------------------------------------------------------------------- /run/PyQt5/uic/widget-plugins/__pycache__/qtwebenginewidgets.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/PyQt5/uic/widget-plugins/__pycache__/qtwebenginewidgets.cpython-37.pyc -------------------------------------------------------------------------------- /run/PyQt5/uic/widget-plugins/__pycache__/qtwebkit.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/PyQt5/uic/widget-plugins/__pycache__/qtwebkit.cpython-37.pyc -------------------------------------------------------------------------------- /run/PyQt5/uic/widget-plugins/qaxcontainer.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2017 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt5. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public License 8 | ## version 3.0 as published by the Free Software Foundation and appearing in 9 | ## the file LICENSE included in the packaging of this file. Please review the 10 | ## following information to ensure the GNU General Public License version 3.0 11 | ## requirements will be met: http://www.gnu.org/copyleft/gpl.html. 12 | ## 13 | ## If you do not wish to use this file under the terms of the GPL version 3.0 14 | ## then you may purchase a commercial license. For more information contact 15 | ## info@riverbankcomputing.com. 16 | ## 17 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 18 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 19 | ## 20 | ############################################################################# 21 | 22 | 23 | # If pluginType is MODULE, the plugin loader will call moduleInformation. The 24 | # variable MODULE is inserted into the local namespace by the plugin loader. 25 | pluginType = MODULE 26 | 27 | 28 | # moduleInformation() must return a tuple (module, widget_list). If "module" 29 | # is "A" and any widget from this module is used, the code generator will write 30 | # "import A". If "module" is "A[.B].C", the code generator will write 31 | # "from A[.B] import C". Each entry in "widget_list" must be unique. 32 | def moduleInformation(): 33 | return "PyQt5.QAxContainer", ("QAxWidget", ) 34 | -------------------------------------------------------------------------------- /run/PyQt5/uic/widget-plugins/qscintilla.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2017 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt5. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public License 8 | ## version 3.0 as published by the Free Software Foundation and appearing in 9 | ## the file LICENSE included in the packaging of this file. Please review the 10 | ## following information to ensure the GNU General Public License version 3.0 11 | ## requirements will be met: http://www.gnu.org/copyleft/gpl.html. 12 | ## 13 | ## If you do not wish to use this file under the terms of the GPL version 3.0 14 | ## then you may purchase a commercial license. For more information contact 15 | ## info@riverbankcomputing.com. 16 | ## 17 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 18 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 19 | ## 20 | ############################################################################# 21 | 22 | 23 | # If pluginType is MODULE, the plugin loader will call moduleInformation. The 24 | # variable MODULE is inserted into the local namespace by the plugin loader. 25 | pluginType = MODULE 26 | 27 | 28 | # moduleInformation() must return a tuple (module, widget_list). If "module" 29 | # is "A" and any widget from this module is used, the code generator will write 30 | # "import A". If "module" is "A[.B].C", the code generator will write 31 | # "from A[.B] import C". Each entry in "widget_list" must be unique. 32 | def moduleInformation(): 33 | return "PyQt5.Qsci", ("QsciScintilla", ) 34 | -------------------------------------------------------------------------------- /run/PyQt5/uic/widget-plugins/qtcharts.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2017 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt5. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public License 8 | ## version 3.0 as published by the Free Software Foundation and appearing in 9 | ## the file LICENSE included in the packaging of this file. Please review the 10 | ## following information to ensure the GNU General Public License version 3.0 11 | ## requirements will be met: http://www.gnu.org/copyleft/gpl.html. 12 | ## 13 | ## If you do not wish to use this file under the terms of the GPL version 3.0 14 | ## then you may purchase a commercial license. For more information contact 15 | ## info@riverbankcomputing.com. 16 | ## 17 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 18 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 19 | ## 20 | ############################################################################# 21 | 22 | 23 | # If pluginType is MODULE, the plugin loader will call moduleInformation. The 24 | # variable MODULE is inserted into the local namespace by the plugin loader. 25 | pluginType = MODULE 26 | 27 | 28 | # moduleInformation() must return a tuple (module, widget_list). If "module" 29 | # is "A" and any widget from this module is used, the code generator will write 30 | # "import A". If "module" is "A[.B].C", the code generator will write 31 | # "from A[.B] import C". Each entry in "widget_list" must be unique. 32 | def moduleInformation(): 33 | return "PyQt5.QtChart", ("QChartView", ) 34 | -------------------------------------------------------------------------------- /run/PyQt5/uic/widget-plugins/qtprintsupport.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2017 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt5. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public License 8 | ## version 3.0 as published by the Free Software Foundation and appearing in 9 | ## the file LICENSE included in the packaging of this file. Please review the 10 | ## following information to ensure the GNU General Public License version 3.0 11 | ## requirements will be met: http://www.gnu.org/copyleft/gpl.html. 12 | ## 13 | ## If you do not wish to use this file under the terms of the GPL version 3.0 14 | ## then you may purchase a commercial license. For more information contact 15 | ## info@riverbankcomputing.com. 16 | ## 17 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 18 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 19 | ## 20 | ############################################################################# 21 | 22 | 23 | # If pluginType is MODULE, the plugin loader will call moduleInformation. The 24 | # variable MODULE is inserted into the local namespace by the plugin loader. 25 | pluginType = MODULE 26 | 27 | 28 | # moduleInformation() must return a tuple (module, widget_list). If "module" 29 | # is "A" and any widget from this module is used, the code generator will write 30 | # "import A". If "module" is "A[.B].C", the code generator will write 31 | # "from A[.B] import C". Each entry in "widget_list" must be unique. 32 | def moduleInformation(): 33 | return 'PyQt5.QtPrintSupport', ('QAbstractPrintDialog', 'QPageSetupDialog') 34 | -------------------------------------------------------------------------------- /run/PyQt5/uic/widget-plugins/qtquickwidgets.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2017 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt5. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public License 8 | ## version 3.0 as published by the Free Software Foundation and appearing in 9 | ## the file LICENSE included in the packaging of this file. Please review the 10 | ## following information to ensure the GNU General Public License version 3.0 11 | ## requirements will be met: http://www.gnu.org/copyleft/gpl.html. 12 | ## 13 | ## If you do not wish to use this file under the terms of the GPL version 3.0 14 | ## then you may purchase a commercial license. For more information contact 15 | ## info@riverbankcomputing.com. 16 | ## 17 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 18 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 19 | ## 20 | ############################################################################# 21 | 22 | 23 | # If pluginType is MODULE, the plugin loader will call moduleInformation. The 24 | # variable MODULE is inserted into the local namespace by the plugin loader. 25 | pluginType = MODULE 26 | 27 | 28 | # moduleInformation() must return a tuple (module, widget_list). If "module" 29 | # is "A" and any widget from this module is used, the code generator will write 30 | # "import A". If "module" is "A[.B].C", the code generator will write 31 | # "from A[.B] import C". Each entry in "widget_list" must be unique. 32 | def moduleInformation(): 33 | return "PyQt5.QtQuickWidgets", ("QQuickWidget", ) 34 | -------------------------------------------------------------------------------- /run/PyQt5/uic/widget-plugins/qtwebenginewidgets.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (c) 2017 Riverbank Computing Limited 4 | ## 5 | ## This file is part of PyQt5. 6 | ## 7 | ## This file may be used under the terms of the GNU General Public License 8 | ## version 3.0 as published by the Free Software Foundation and appearing in 9 | ## the file LICENSE included in the packaging of this file. Please review the 10 | ## following information to ensure the GNU General Public License version 3.0 11 | ## requirements will be met: http://www.gnu.org/copyleft/gpl.html. 12 | ## 13 | ## If you do not wish to use this file under the terms of the GPL version 3.0 14 | ## then you may purchase a commercial license. For more information contact 15 | ## info@riverbankcomputing.com. 16 | ## 17 | ## This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 18 | ## WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 19 | ## 20 | ############################################################################# 21 | 22 | 23 | # If pluginType is MODULE, the plugin loader will call moduleInformation. The 24 | # variable MODULE is inserted into the local namespace by the plugin loader. 25 | pluginType = MODULE 26 | 27 | 28 | # moduleInformation() must return a tuple (module, widget_list). If "module" 29 | # is "A" and any widget from this module is used, the code generator will write 30 | # "import A". If "module" is "A[.B].C", the code generator will write 31 | # "from A[.B] import C". Each entry in "widget_list" must be unique. 32 | def moduleInformation(): 33 | return "PyQt5.QtWebEngineWidgets", ("QWebEngineView", ) 34 | -------------------------------------------------------------------------------- /run/PyQt5/uic/widget-plugins/qtwebkit.py: -------------------------------------------------------------------------------- 1 | ############################################################################# 2 | ## 3 | ## Copyright (C) 2014 Riverbank Computing Limited. 4 | ## Copyright (C) 2006 Thorsten Marek. 5 | ## All right reserved. 6 | ## 7 | ## This file is part of PyQt. 8 | ## 9 | ## You may use this file under the terms of the GPL v2 or the revised BSD 10 | ## license as follows: 11 | ## 12 | ## "Redistribution and use in source and binary forms, with or without 13 | ## modification, are permitted provided that the following conditions are 14 | ## met: 15 | ## * Redistributions of source code must retain the above copyright 16 | ## notice, this list of conditions and the following disclaimer. 17 | ## * Redistributions in binary form must reproduce the above copyright 18 | ## notice, this list of conditions and the following disclaimer in 19 | ## the documentation and/or other materials provided with the 20 | ## distribution. 21 | ## * Neither the name of the Riverbank Computing Limited nor the names 22 | ## of its contributors may be used to endorse or promote products 23 | ## derived from this software without specific prior written 24 | ## permission. 25 | ## 26 | ## THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 27 | ## "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 28 | ## LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 29 | ## A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 30 | ## OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 31 | ## SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 32 | ## LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 33 | ## DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 34 | ## THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 35 | ## (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 36 | ## OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." 37 | ## 38 | ############################################################################# 39 | 40 | 41 | # If pluginType is MODULE, the plugin loader will call moduleInformation. The 42 | # variable MODULE is inserted into the local namespace by the plugin loader. 43 | pluginType = MODULE 44 | 45 | 46 | # moduleInformation() must return a tuple (module, widget_list). If "module" 47 | # is "A" and any widget from this module is used, the code generator will write 48 | # "import A". If "module" is "A[.B].C", the code generator will write 49 | # "from A[.B] import C". Each entry in "widget_list" must be unique. 50 | def moduleInformation(): 51 | return "PyQt5.QtWebKitWidgets", ("QWebView", ) 52 | -------------------------------------------------------------------------------- /run/Qt5Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/Qt5Core.dll -------------------------------------------------------------------------------- /run/Qt5Gui.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/Qt5Gui.dll -------------------------------------------------------------------------------- /run/Qt5Network.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/Qt5Network.dll -------------------------------------------------------------------------------- /run/Qt5Qml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/Qt5Qml.dll -------------------------------------------------------------------------------- /run/Qt5Quick.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/Qt5Quick.dll -------------------------------------------------------------------------------- /run/Qt5Svg.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/Qt5Svg.dll -------------------------------------------------------------------------------- /run/Qt5Widgets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/Qt5Widgets.dll -------------------------------------------------------------------------------- /run/VCRUNTIME140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/VCRUNTIME140.dll -------------------------------------------------------------------------------- /run/_bz2.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/_bz2.pyd -------------------------------------------------------------------------------- /run/_ctypes.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/_ctypes.pyd -------------------------------------------------------------------------------- /run/_elementtree.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/_elementtree.pyd -------------------------------------------------------------------------------- /run/_hashlib.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/_hashlib.pyd -------------------------------------------------------------------------------- /run/_lzma.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/_lzma.pyd -------------------------------------------------------------------------------- /run/_queue.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/_queue.pyd -------------------------------------------------------------------------------- /run/_socket.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/_socket.pyd -------------------------------------------------------------------------------- /run/_sqlite3.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/_sqlite3.pyd -------------------------------------------------------------------------------- /run/_ssl.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/_ssl.pyd -------------------------------------------------------------------------------- /run/api-ms-win-core-console-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/api-ms-win-core-console-l1-1-0.dll -------------------------------------------------------------------------------- /run/api-ms-win-core-datetime-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/api-ms-win-core-datetime-l1-1-0.dll -------------------------------------------------------------------------------- /run/api-ms-win-core-debug-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/api-ms-win-core-debug-l1-1-0.dll -------------------------------------------------------------------------------- /run/api-ms-win-core-errorhandling-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/api-ms-win-core-errorhandling-l1-1-0.dll -------------------------------------------------------------------------------- /run/api-ms-win-core-file-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/api-ms-win-core-file-l1-1-0.dll -------------------------------------------------------------------------------- /run/api-ms-win-core-file-l1-2-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/api-ms-win-core-file-l1-2-0.dll -------------------------------------------------------------------------------- /run/api-ms-win-core-file-l2-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/api-ms-win-core-file-l2-1-0.dll -------------------------------------------------------------------------------- /run/api-ms-win-core-handle-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/api-ms-win-core-handle-l1-1-0.dll -------------------------------------------------------------------------------- /run/api-ms-win-core-heap-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/api-ms-win-core-heap-l1-1-0.dll -------------------------------------------------------------------------------- /run/api-ms-win-core-interlocked-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/api-ms-win-core-interlocked-l1-1-0.dll -------------------------------------------------------------------------------- /run/api-ms-win-core-libraryloader-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/api-ms-win-core-libraryloader-l1-1-0.dll -------------------------------------------------------------------------------- /run/api-ms-win-core-localization-l1-2-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/api-ms-win-core-localization-l1-2-0.dll -------------------------------------------------------------------------------- /run/api-ms-win-core-memory-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/api-ms-win-core-memory-l1-1-0.dll -------------------------------------------------------------------------------- /run/api-ms-win-core-namedpipe-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/api-ms-win-core-namedpipe-l1-1-0.dll -------------------------------------------------------------------------------- /run/api-ms-win-core-processenvironment-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/api-ms-win-core-processenvironment-l1-1-0.dll -------------------------------------------------------------------------------- /run/api-ms-win-core-processthreads-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/api-ms-win-core-processthreads-l1-1-0.dll -------------------------------------------------------------------------------- /run/api-ms-win-core-processthreads-l1-1-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/api-ms-win-core-processthreads-l1-1-1.dll -------------------------------------------------------------------------------- /run/api-ms-win-core-profile-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/api-ms-win-core-profile-l1-1-0.dll -------------------------------------------------------------------------------- /run/api-ms-win-core-rtlsupport-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/api-ms-win-core-rtlsupport-l1-1-0.dll -------------------------------------------------------------------------------- /run/api-ms-win-core-string-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/api-ms-win-core-string-l1-1-0.dll -------------------------------------------------------------------------------- /run/api-ms-win-core-synch-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/api-ms-win-core-synch-l1-1-0.dll -------------------------------------------------------------------------------- /run/api-ms-win-core-synch-l1-2-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/api-ms-win-core-synch-l1-2-0.dll -------------------------------------------------------------------------------- /run/api-ms-win-core-sysinfo-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/api-ms-win-core-sysinfo-l1-1-0.dll -------------------------------------------------------------------------------- /run/api-ms-win-core-timezone-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/api-ms-win-core-timezone-l1-1-0.dll -------------------------------------------------------------------------------- /run/api-ms-win-core-util-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/api-ms-win-core-util-l1-1-0.dll -------------------------------------------------------------------------------- /run/api-ms-win-crt-conio-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/api-ms-win-crt-conio-l1-1-0.dll -------------------------------------------------------------------------------- /run/api-ms-win-crt-convert-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/api-ms-win-crt-convert-l1-1-0.dll -------------------------------------------------------------------------------- /run/api-ms-win-crt-environment-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/api-ms-win-crt-environment-l1-1-0.dll -------------------------------------------------------------------------------- /run/api-ms-win-crt-filesystem-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/api-ms-win-crt-filesystem-l1-1-0.dll -------------------------------------------------------------------------------- /run/api-ms-win-crt-heap-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/api-ms-win-crt-heap-l1-1-0.dll -------------------------------------------------------------------------------- /run/api-ms-win-crt-locale-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/api-ms-win-crt-locale-l1-1-0.dll -------------------------------------------------------------------------------- /run/api-ms-win-crt-math-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/api-ms-win-crt-math-l1-1-0.dll -------------------------------------------------------------------------------- /run/api-ms-win-crt-process-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/api-ms-win-crt-process-l1-1-0.dll -------------------------------------------------------------------------------- /run/api-ms-win-crt-runtime-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/api-ms-win-crt-runtime-l1-1-0.dll -------------------------------------------------------------------------------- /run/api-ms-win-crt-stdio-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/api-ms-win-crt-stdio-l1-1-0.dll -------------------------------------------------------------------------------- /run/api-ms-win-crt-string-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/api-ms-win-crt-string-l1-1-0.dll -------------------------------------------------------------------------------- /run/api-ms-win-crt-time-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/api-ms-win-crt-time-l1-1-0.dll -------------------------------------------------------------------------------- /run/api-ms-win-crt-utility-l1-1-0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/api-ms-win-crt-utility-l1-1-0.dll -------------------------------------------------------------------------------- /run/base_library.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/base_library.zip -------------------------------------------------------------------------------- /run/database/app.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/database/app.db -------------------------------------------------------------------------------- /run/icudt58.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/icudt58.dll -------------------------------------------------------------------------------- /run/icuin58.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/icuin58.dll -------------------------------------------------------------------------------- /run/icuuc58.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/icuuc58.dll -------------------------------------------------------------------------------- /run/images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/images/1.jpg -------------------------------------------------------------------------------- /run/images/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/images/4.jpg -------------------------------------------------------------------------------- /run/images/Book Library.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/images/Book Library.ico -------------------------------------------------------------------------------- /run/libcrypto-1_1-x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/libcrypto-1_1-x64.dll -------------------------------------------------------------------------------- /run/libjpeg.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/libjpeg.dll -------------------------------------------------------------------------------- /run/libpng16.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/libpng16.dll -------------------------------------------------------------------------------- /run/libssl-1_1-x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/libssl-1_1-x64.dll -------------------------------------------------------------------------------- /run/notices/notice.txt: -------------------------------------------------------------------------------- 1 | To change the notice 2 | -------------------- 3 | 1. write the notice in notice.txt 4 | present in notice folder 5 | 2. save the file 6 | 3. restart the program -------------------------------------------------------------------------------- /run/opengl32sw.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/opengl32sw.dll -------------------------------------------------------------------------------- /run/pyexpat.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/pyexpat.pyd -------------------------------------------------------------------------------- /run/python3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/python3.dll -------------------------------------------------------------------------------- /run/python37.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/python37.dll -------------------------------------------------------------------------------- /run/pywintypes37.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/pywintypes37.dll -------------------------------------------------------------------------------- /run/run.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/run.exe -------------------------------------------------------------------------------- /run/run.exe.manifest: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /run/select.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/select.pyd -------------------------------------------------------------------------------- /run/sip.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/sip.pyd -------------------------------------------------------------------------------- /run/sqlite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/sqlite3.dll -------------------------------------------------------------------------------- /run/ucrtbase.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/ucrtbase.dll -------------------------------------------------------------------------------- /run/ui pages/admin_template.ui: -------------------------------------------------------------------------------- 1 | 2 | 3 | MainWindow 4 | 5 | 6 | 7 | 0 8 | 0 9 | 640 10 | 480 11 | 12 | 13 | 14 | 15 | 640 16 | 480 17 | 18 | 19 | 20 | 21 | 640 22 | 480 23 | 24 | 25 | 26 | MainWindow 27 | 28 | 29 | 30 | 31 | 32 | 0 33 | 0 34 | 640 35 | 50 36 | 37 | 38 | 39 | background-color: rgb(0, 0, 0); 40 | color: rgb(255, 255, 255); 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 100 50 | 0 51 | 100 52 | 50 53 | 54 | 55 | 56 | 57 | 10 58 | 75 59 | true 60 | 61 | 62 | 63 | color: rgb(255, 255, 255); 64 | background-color: qlineargradient(spread:pad, x1:0.284864, y1:0.233, x2:1, y2:1, stop:0 rgba(0, 0, 0, 255), stop:1 rgba(176, 165, 232, 255)); 65 | 66 | 67 | Add User 68 | 69 | 70 | false 71 | 72 | 73 | 74 | 75 | 76 | 0 77 | 0 78 | 100 79 | 50 80 | 81 | 82 | 83 | 84 | 14 85 | 75 86 | true 87 | 88 | 89 | 90 | color: rgb(255, 255, 255); 91 | background-color: rgb(0, 140, 186); 92 | 93 | 94 | Home 95 | 96 | 97 | Qt::AlignCenter 98 | 99 | 100 | 101 | 102 | 103 | 200 104 | 0 105 | 100 106 | 50 107 | 108 | 109 | 110 | 111 | 10 112 | 75 113 | true 114 | 115 | 116 | 117 | color: rgb(255, 255, 255); 118 | background-color: qlineargradient(spread:pad, x1:0.284864, y1:0.233, x2:1, y2:1, stop:0 rgba(0, 0, 0, 255), stop:1 rgba(176, 165, 232, 255)); 119 | 120 | 121 | See Feedbacks 122 | 123 | 124 | 125 | 126 | 127 | 300 128 | 0 129 | 100 130 | 50 131 | 132 | 133 | 134 | 135 | 10 136 | 75 137 | true 138 | 139 | 140 | 141 | color: rgb(255, 255, 255); 142 | background-color: qlineargradient(spread:pad, x1:0.284864, y1:0.233, x2:1, y2:1, stop:0 rgba(0, 0, 0, 255), stop:1 rgba(176, 165, 232, 255)); 143 | 144 | 145 | DB works 146 | 147 | 148 | 149 | 150 | 151 | 540 152 | 0 153 | 100 154 | 50 155 | 156 | 157 | 158 | 159 | 10 160 | 75 161 | true 162 | 163 | 164 | 165 | color: rgb(255, 255, 255); 166 | background-color: rgb(255, 0, 0); 167 | 168 | 169 | Log out 170 | 171 | 172 | 173 | 174 | 175 | 320 176 | 460 177 | 320 178 | 20 179 | 180 | 181 | 182 | background-color: rgb(0, 0, 0); 183 | color: rgb(255, 255, 255); 184 | 185 | 186 | Logged in at 187 | 188 | 189 | Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter 190 | 191 | 192 | 193 | 194 | 195 | 0 196 | 50 197 | 200 198 | 410 199 | 200 | 201 | 202 | background-color: rgb(255, 170, 127); 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 0 212 | 460 213 | 320 214 | 20 215 | 216 | 217 | 218 | background-color: rgb(0, 0, 0); 219 | color: rgb(255, 255, 255); 220 | 221 | 222 | Logged in by 223 | 224 | 225 | Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter 226 | 227 | 228 | 229 | 230 | 231 | 232 | 233 | -------------------------------------------------------------------------------- /run/ui pages/error_register.ui: -------------------------------------------------------------------------------- 1 | 2 | 3 | MainWindow 4 | 5 | 6 | 7 | 0 8 | 0 9 | 480 10 | 240 11 | 12 | 13 | 14 | 15 | 480 16 | 240 17 | 18 | 19 | 20 | 21 | 480 22 | 240 23 | 24 | 25 | 26 | MainWindow 27 | 28 | 29 | background-color: rgb(255, 200, 200); 30 | 31 | 32 | 33 | 34 | 35 | 10 36 | 10 37 | 460 38 | 30 39 | 40 | 41 | 42 | 43 | 14 44 | 75 45 | true 46 | 47 | 48 | 49 | background-color: rgba(255, 255, 255,0); 50 | color: rgb(255, 0, 0); 51 | 52 | 53 | Oops!! Unable to register due to 54 | 55 | 56 | 57 | 58 | 59 | 10 60 | 60 61 | 460 62 | 100 63 | 64 | 65 | 66 | 67 | 10 68 | 75 69 | true 70 | 71 | 72 | 73 | background-color: rgba(255, 255, 255, 0); 74 | color: rgb(255, 0, 0); 75 | 76 | 77 | Error message will come here 78 | 79 | 80 | Qt::AlignCenter 81 | 82 | 83 | 84 | 85 | 86 | 10 87 | 200 88 | 460 89 | 30 90 | 91 | 92 | 93 | 94 | 10 95 | 75 96 | true 97 | 98 | 99 | 100 | background-color: rgb(255, 0, 0); 101 | 102 | 103 | Close and Continue 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | -------------------------------------------------------------------------------- /run/ui pages/forgot_password.ui: -------------------------------------------------------------------------------- 1 | 2 | 3 | MainWindow 4 | 5 | 6 | 7 | 0 8 | 0 9 | 640 10 | 480 11 | 12 | 13 | 14 | 15 | 640 16 | 480 17 | 18 | 19 | 20 | 21 | 640 22 | 480 23 | 24 | 25 | 26 | MainWindow 27 | 28 | 29 | 30 | 31 | 32 | 50 33 | 50 34 | 540 35 | 40 36 | 37 | 38 | 39 | 40 | 20 41 | 75 42 | true 43 | 44 | 45 | 46 | Forgot Password / Inactive member ? 47 | 48 | 49 | Qt::AlignCenter 50 | 51 | 52 | 53 | 54 | 55 | 50 56 | 100 57 | 540 58 | 20 59 | 60 | 61 | 62 | 63 | 75 64 | true 65 | 66 | 67 | 68 | No problem just fill some details below 69 | 70 | 71 | Qt::AlignCenter 72 | 73 | 74 | 75 | 76 | 77 | 100 78 | 160 79 | 150 80 | 20 81 | 82 | 83 | 84 | 85 | 14 86 | 75 87 | true 88 | 89 | 90 | 91 | ID 92 | 93 | 94 | 95 | 96 | 97 | 100 98 | 210 99 | 150 100 | 20 101 | 102 | 103 | 104 | 105 | 14 106 | 75 107 | true 108 | 109 | 110 | 111 | Aadhaar No 112 | 113 | 114 | 115 | 116 | 117 | 100 118 | 290 119 | 150 120 | 20 121 | 122 | 123 | 124 | 125 | 14 126 | 75 127 | true 128 | 129 | 130 | 131 | New Password 132 | 133 | 134 | 135 | 136 | 137 | 270 138 | 160 139 | 250 140 | 25 141 | 142 | 143 | 144 | 145 | 10 146 | 75 147 | true 148 | 149 | 150 | 151 | 152 | 153 | 154 | 270 155 | 210 156 | 250 157 | 25 158 | 159 | 160 | 161 | 162 | 10 163 | 75 164 | true 165 | 166 | 167 | 168 | 169 | 170 | 171 | 270 172 | 290 173 | 250 174 | 25 175 | 176 | 177 | 178 | 179 | 10 180 | 75 181 | true 182 | 183 | 184 | 185 | QLineEdit::Password 186 | 187 | 188 | 189 | 190 | 191 | 50 192 | 250 193 | 540 194 | 20 195 | 196 | 197 | 198 | 199 | 10 200 | 75 201 | true 202 | 203 | 204 | 205 | 206 | 207 | 208 | Qt::AlignCenter 209 | 210 | 211 | 212 | 213 | 214 | 319 215 | 360 216 | 201 217 | 40 218 | 219 | 220 | 221 | 222 | 10 223 | 75 224 | true 225 | 226 | 227 | 228 | background-color: rgb(0, 255, 0); 229 | 230 | 231 | Verify and Proceed 232 | 233 | 234 | 235 | 236 | 237 | 100 238 | 360 239 | 171 240 | 40 241 | 242 | 243 | 244 | 245 | 10 246 | 75 247 | true 248 | 249 | 250 | 251 | background-color: rgb(255, 0, 0); 252 | 253 | 254 | Back to home 255 | 256 | 257 | 258 | 259 | 260 | 261 | 262 | -------------------------------------------------------------------------------- /run/ui pages/librarian_home.ui: -------------------------------------------------------------------------------- 1 | 2 | 3 | MainWindow 4 | 5 | 6 | 7 | 0 8 | 0 9 | 640 10 | 480 11 | 12 | 13 | 14 | 15 | 640 16 | 480 17 | 18 | 19 | 20 | 21 | 640 22 | 480 23 | 24 | 25 | 26 | MainWindow 27 | 28 | 29 | 30 | 31 | 32 | 0 33 | 0 34 | 640 35 | 50 36 | 37 | 38 | 39 | background-color: rgb(0, 0, 0); 40 | color: rgb(255, 255, 255); 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 100 50 | 0 51 | 100 52 | 50 53 | 54 | 55 | 56 | 57 | 10 58 | 75 59 | true 60 | 61 | 62 | 63 | color: rgb(255, 255, 255); 64 | background-color: qlineargradient(spread:pad, x1:0.284864, y1:0.233, x2:1, y2:1, stop:0 rgba(0, 0, 0, 255), stop:1 rgba(176, 165, 232, 255)); 65 | 66 | 67 | Add Book 68 | 69 | 70 | 71 | 72 | 73 | 0 74 | 0 75 | 100 76 | 50 77 | 78 | 79 | 80 | 81 | 14 82 | 75 83 | true 84 | 85 | 86 | 87 | color: rgb(255, 255, 255); 88 | background-color: rgb(0, 140, 186); 89 | 90 | 91 | Home 92 | 93 | 94 | Qt::AlignCenter 95 | 96 | 97 | 98 | 99 | 100 | 200 101 | 0 102 | 100 103 | 50 104 | 105 | 106 | 107 | 108 | 10 109 | 75 110 | true 111 | 112 | 113 | 114 | color: rgb(255, 255, 255); 115 | background-color: qlineargradient(spread:pad, x1:0.284864, y1:0.233, x2:1, y2:1, stop:0 rgba(0, 0, 0, 255), stop:1 rgba(176, 165, 232, 255)); 116 | 117 | 118 | Remove Book 119 | 120 | 121 | 122 | 123 | 124 | 300 125 | 0 126 | 100 127 | 50 128 | 129 | 130 | 131 | 132 | 10 133 | 75 134 | true 135 | 136 | 137 | 138 | color: rgb(255, 255, 255); 139 | background-color: qlineargradient(spread:pad, x1:0.284864, y1:0.233, x2:1, y2:1, stop:0 rgba(0, 0, 0, 255), stop:1 rgba(176, 165, 232, 255)); 140 | 141 | 142 | Manage Book 143 | 144 | 145 | 146 | 147 | 148 | 540 149 | 0 150 | 100 151 | 50 152 | 153 | 154 | 155 | 156 | 10 157 | 75 158 | true 159 | 160 | 161 | 162 | color: rgb(255, 255, 255); 163 | background-color: rgb(255, 0, 0); 164 | 165 | 166 | Log out 167 | 168 | 169 | 170 | 171 | 172 | 320 173 | 460 174 | 320 175 | 20 176 | 177 | 178 | 179 | background-color: rgb(0, 0, 0); 180 | color: rgb(255, 255, 255); 181 | 182 | 183 | Logged in at 184 | 185 | 186 | Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter 187 | 188 | 189 | 190 | 191 | 192 | 0 193 | 50 194 | 200 195 | 410 196 | 197 | 198 | 199 | background-color: rgb(255, 170, 127); 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 0 209 | 460 210 | 320 211 | 20 212 | 213 | 214 | 215 | background-color: rgb(0, 0, 0); 216 | color: rgb(255, 255, 255); 217 | 218 | 219 | Logged in by 220 | 221 | 222 | Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter 223 | 224 | 225 | 226 | 227 | 228 | 10 229 | 180 230 | 180 231 | 40 232 | 233 | 234 | 235 | 236 | 10 237 | 75 238 | true 239 | 240 | 241 | 242 | background-color: rgb(170, 0, 255); 243 | color: rgb(255, 255, 255); 244 | 245 | 246 | As Member 247 | 248 | 249 | 250 | 251 | 252 | 10 253 | 280 254 | 180 255 | 40 256 | 257 | 258 | 259 | 260 | 10 261 | 75 262 | true 263 | 264 | 265 | 266 | background-color: rgb(170, 0, 255); 267 | color: rgb(255, 255, 255); 268 | 269 | 270 | Edit Details 271 | 272 | 273 | 274 | 275 | 276 | 250 277 | 140 278 | 340 279 | 30 280 | 281 | 282 | 283 | 284 | 12 285 | 75 286 | true 287 | 288 | 289 | 290 | Hello!! 291 | 292 | 293 | Qt::AlignCenter 294 | 295 | 296 | 297 | 298 | 299 | 230 300 | 160 301 | 380 302 | 50 303 | 304 | 305 | 306 | 307 | 14 308 | 75 309 | true 310 | 311 | 312 | 313 | [desg] [username] 314 | 315 | 316 | Qt::AlignCenter 317 | 318 | 319 | 320 | 321 | 322 | 230 323 | 290 324 | 380 325 | 30 326 | 327 | 328 | 329 | 330 | 10 331 | 75 332 | true 333 | 334 | 335 | 336 | color: rgb(0, 0, 127); 337 | 338 | 339 | Librarians do not retire they just get re-shelved 340 | 341 | 342 | Qt::AlignCenter 343 | 344 | 345 | 346 | 347 | 348 | 230 349 | 320 350 | 380 351 | 30 352 | 353 | 354 | 355 | 356 | 10 357 | 75 358 | true 359 | 360 | 361 | 362 | color: rgb(170, 0, 127); 363 | 364 | 365 | Librarian the orginal search engine 366 | 367 | 368 | Qt::AlignCenter 369 | 370 | 371 | 372 | 373 | 374 | 230 375 | 350 376 | 380 377 | 30 378 | 379 | 380 | 381 | 382 | 10 383 | 75 384 | true 385 | 386 | 387 | 388 | color: rgb(85, 0, 127); 389 | 390 | 391 | If you can find something to read thank a librarian 392 | 393 | 394 | Qt::AlignCenter 395 | 396 | 397 | 398 | 399 | 400 | 401 | 402 | -------------------------------------------------------------------------------- /run/ui pages/librarian_remove_books.ui: -------------------------------------------------------------------------------- 1 | 2 | 3 | MainWindow 4 | 5 | 6 | 7 | 0 8 | 0 9 | 640 10 | 480 11 | 12 | 13 | 14 | 15 | 640 16 | 480 17 | 18 | 19 | 20 | 21 | 640 22 | 480 23 | 24 | 25 | 26 | MainWindow 27 | 28 | 29 | 30 | 31 | 32 | 0 33 | 0 34 | 640 35 | 50 36 | 37 | 38 | 39 | background-color: rgb(0, 0, 0); 40 | color: rgb(255, 255, 255); 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 0 50 | 0 51 | 100 52 | 50 53 | 54 | 55 | 56 | 57 | 10 58 | 75 59 | true 60 | 61 | 62 | 63 | color: rgb(255, 255, 255); 64 | background-color: qlineargradient(spread:pad, x1:0.284864, y1:0.233, x2:1, y2:1, stop:0 rgba(0, 0, 0, 255), stop:1 rgba(176, 165, 232, 255)); 65 | 66 | 67 | Home 68 | 69 | 70 | 71 | 72 | 73 | 200 74 | 0 75 | 100 76 | 50 77 | 78 | 79 | 80 | 81 | 14 82 | 75 83 | true 84 | 85 | 86 | 87 | color: rgb(255, 255, 255); 88 | background-color: rgb(0, 140, 186); 89 | 90 | 91 | Remove Book 92 | 93 | 94 | Qt::AlignCenter 95 | 96 | 97 | true 98 | 99 | 100 | 101 | 102 | 103 | 100 104 | 0 105 | 100 106 | 50 107 | 108 | 109 | 110 | 111 | 10 112 | 75 113 | true 114 | 115 | 116 | 117 | color: rgb(255, 255, 255); 118 | background-color: qlineargradient(spread:pad, x1:0.284864, y1:0.233, x2:1, y2:1, stop:0 rgba(0, 0, 0, 255), stop:1 rgba(176, 165, 232, 255)); 119 | 120 | 121 | Add Book 122 | 123 | 124 | 125 | 126 | 127 | 300 128 | 0 129 | 100 130 | 50 131 | 132 | 133 | 134 | 135 | 10 136 | 75 137 | true 138 | 139 | 140 | 141 | color: rgb(255, 255, 255); 142 | background-color: qlineargradient(spread:pad, x1:0.284864, y1:0.233, x2:1, y2:1, stop:0 rgba(0, 0, 0, 255), stop:1 rgba(176, 165, 232, 255)); 143 | 144 | 145 | Manage Book 146 | 147 | 148 | 149 | 150 | 151 | 540 152 | 0 153 | 100 154 | 50 155 | 156 | 157 | 158 | 159 | 10 160 | 75 161 | true 162 | 163 | 164 | 165 | color: rgb(255, 255, 255); 166 | background-color: rgb(255, 0, 0); 167 | 168 | 169 | Log out 170 | 171 | 172 | 173 | 174 | 175 | 320 176 | 460 177 | 320 178 | 20 179 | 180 | 181 | 182 | background-color: rgb(0, 0, 0); 183 | color: rgb(255, 255, 255); 184 | 185 | 186 | Logged in at 187 | 188 | 189 | Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter 190 | 191 | 192 | 193 | 194 | 195 | 0 196 | 50 197 | 200 198 | 410 199 | 200 | 201 | 202 | background-color: rgb(255, 170, 127); 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 0 212 | 460 213 | 320 214 | 20 215 | 216 | 217 | 218 | background-color: rgb(0, 0, 0); 219 | color: rgb(255, 255, 255); 220 | 221 | 222 | Logged in by 223 | 224 | 225 | Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter 226 | 227 | 228 | 229 | 230 | 231 | 250 232 | 130 233 | 340 234 | 30 235 | 236 | 237 | 238 | 239 | 12 240 | 75 241 | true 242 | 243 | 244 | 245 | Add Book to Library 246 | 247 | 248 | Qt::AlignCenter 249 | 250 | 251 | 252 | 253 | 254 | 250 255 | 180 256 | 120 257 | 25 258 | 259 | 260 | 261 | 262 | 12 263 | 75 264 | true 265 | 266 | 267 | 268 | border:2px solid; 269 | border-color: rgb(0, 255, 0); 270 | background-color: rgb(170, 85, 127); 271 | color: rgb(255, 255, 255); 272 | 273 | 274 | Book ID 275 | 276 | 277 | 278 | 279 | 280 | 250 281 | 250 282 | 361 283 | 30 284 | 285 | 286 | 287 | 288 | 10 289 | 75 290 | true 291 | 292 | 293 | 294 | background-color: rgb(198, 157, 255); 295 | 296 | 297 | Add Units 298 | 299 | 300 | 301 | 302 | 303 | 390 304 | 180 305 | 220 306 | 25 307 | 308 | 309 | 310 | 311 | 10 312 | 75 313 | true 314 | 315 | 316 | 317 | border:2px solid; 318 | border-color: rgb(0, 255, 0); 319 | 320 | 321 | 322 | 323 | 324 | 250 325 | 310 326 | 360 327 | 25 328 | 329 | 330 | 331 | 332 | 75 333 | true 334 | 335 | 336 | 337 | 338 | 339 | 340 | Qt::AlignCenter 341 | 342 | 343 | 344 | 345 | 346 | 347 | 348 | -------------------------------------------------------------------------------- /run/ui pages/librarian_template.ui: -------------------------------------------------------------------------------- 1 | 2 | 3 | MainWindow 4 | 5 | 6 | 7 | 0 8 | 0 9 | 640 10 | 480 11 | 12 | 13 | 14 | 15 | 640 16 | 480 17 | 18 | 19 | 20 | 21 | 640 22 | 480 23 | 24 | 25 | 26 | MainWindow 27 | 28 | 29 | 30 | 31 | 32 | 0 33 | 0 34 | 640 35 | 50 36 | 37 | 38 | 39 | background-color: rgb(0, 0, 0); 40 | color: rgb(255, 255, 255); 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 100 50 | 0 51 | 100 52 | 50 53 | 54 | 55 | 56 | 57 | 10 58 | 75 59 | true 60 | 61 | 62 | 63 | color: rgb(255, 255, 255); 64 | background-color: qlineargradient(spread:pad, x1:0.284864, y1:0.233, x2:1, y2:1, stop:0 rgba(0, 0, 0, 255), stop:1 rgba(176, 165, 232, 255)); 65 | 66 | 67 | Add Book 68 | 69 | 70 | 71 | 72 | 73 | 0 74 | 0 75 | 100 76 | 50 77 | 78 | 79 | 80 | 81 | 14 82 | 75 83 | true 84 | 85 | 86 | 87 | color: rgb(255, 255, 255); 88 | background-color: rgb(0, 140, 186); 89 | 90 | 91 | Home 92 | 93 | 94 | Qt::AlignCenter 95 | 96 | 97 | 98 | 99 | 100 | 200 101 | 0 102 | 100 103 | 50 104 | 105 | 106 | 107 | 108 | 10 109 | 75 110 | true 111 | 112 | 113 | 114 | color: rgb(255, 255, 255); 115 | background-color: qlineargradient(spread:pad, x1:0.284864, y1:0.233, x2:1, y2:1, stop:0 rgba(0, 0, 0, 255), stop:1 rgba(176, 165, 232, 255)); 116 | 117 | 118 | Remove Book 119 | 120 | 121 | 122 | 123 | 124 | 300 125 | 0 126 | 100 127 | 50 128 | 129 | 130 | 131 | 132 | 10 133 | 75 134 | true 135 | 136 | 137 | 138 | color: rgb(255, 255, 255); 139 | background-color: qlineargradient(spread:pad, x1:0.284864, y1:0.233, x2:1, y2:1, stop:0 rgba(0, 0, 0, 255), stop:1 rgba(176, 165, 232, 255)); 140 | 141 | 142 | Manage Book 143 | 144 | 145 | 146 | 147 | 148 | 540 149 | 0 150 | 100 151 | 50 152 | 153 | 154 | 155 | 156 | 10 157 | 75 158 | true 159 | 160 | 161 | 162 | color: rgb(255, 255, 255); 163 | background-color: rgb(255, 0, 0); 164 | 165 | 166 | Log out 167 | 168 | 169 | 170 | 171 | 172 | 320 173 | 460 174 | 320 175 | 20 176 | 177 | 178 | 179 | background-color: rgb(0, 0, 0); 180 | color: rgb(255, 255, 255); 181 | 182 | 183 | Logged in at 184 | 185 | 186 | Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter 187 | 188 | 189 | 190 | 191 | 192 | 0 193 | 50 194 | 200 195 | 410 196 | 197 | 198 | 199 | background-color: rgb(255, 170, 127); 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 0 209 | 460 210 | 320 211 | 20 212 | 213 | 214 | 215 | background-color: rgb(0, 0, 0); 216 | color: rgb(255, 255, 255); 217 | 218 | 219 | Logged in by 220 | 221 | 222 | Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter 223 | 224 | 225 | 226 | 227 | 228 | 10 229 | 180 230 | 180 231 | 40 232 | 233 | 234 | 235 | 236 | 10 237 | 75 238 | true 239 | 240 | 241 | 242 | background-color: rgb(170, 0, 255); 243 | color: rgb(255, 255, 255); 244 | 245 | 246 | As Member 247 | 248 | 249 | 250 | 251 | 252 | 10 253 | 280 254 | 180 255 | 40 256 | 257 | 258 | 259 | 260 | 10 261 | 75 262 | true 263 | 264 | 265 | 266 | background-color: rgb(170, 0, 255); 267 | color: rgb(255, 255, 255); 268 | 269 | 270 | Edit Details 271 | 272 | 273 | 274 | 275 | 276 | 277 | 278 | -------------------------------------------------------------------------------- /run/ui pages/member_feedback.ui: -------------------------------------------------------------------------------- 1 | 2 | 3 | MainWindow 4 | 5 | 6 | 7 | 0 8 | 0 9 | 640 10 | 480 11 | 12 | 13 | 14 | 15 | 640 16 | 480 17 | 18 | 19 | 20 | 21 | 640 22 | 480 23 | 24 | 25 | 26 | MainWindow 27 | 28 | 29 | background-color: rgb(255, 245, 202); 30 | 31 | 32 | 33 | 34 | 35 | 0 36 | 0 37 | 640 38 | 50 39 | 40 | 41 | 42 | background-color: rgb(0, 0, 0); 43 | color: rgb(255, 255, 255); 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 0 53 | 0 54 | 100 55 | 50 56 | 57 | 58 | 59 | 60 | 10 61 | 75 62 | true 63 | 64 | 65 | 66 | color: rgb(255, 255, 255); 67 | background-color: qlineargradient(spread:pad, x1:0.284864, y1:0.233, x2:1, y2:1, stop:0 rgba(0, 0, 0, 255), stop:1 rgba(176, 165, 232, 255)); 68 | 69 | 70 | Home 71 | 72 | 73 | 74 | 75 | 76 | 300 77 | 0 78 | 100 79 | 50 80 | 81 | 82 | 83 | 84 | 14 85 | 75 86 | true 87 | 88 | 89 | 90 | color: rgb(255, 255, 255); 91 | background-color: rgb(0, 140, 186); 92 | 93 | 94 | Feedback 95 | 96 | 97 | Qt::AlignCenter 98 | 99 | 100 | true 101 | 102 | 103 | 104 | 105 | 106 | 100 107 | 0 108 | 100 109 | 50 110 | 111 | 112 | 113 | 114 | 10 115 | 75 116 | true 117 | 118 | 119 | 120 | color: rgb(255, 255, 255); 121 | background-color: qlineargradient(spread:pad, x1:0.284864, y1:0.233, x2:1, y2:1, stop:0 rgba(0, 0, 0, 255), stop:1 rgba(176, 165, 232, 255)); 122 | 123 | 124 | Search books 125 | 126 | 127 | 128 | 129 | 130 | 200 131 | 0 132 | 100 133 | 50 134 | 135 | 136 | 137 | 138 | 10 139 | 75 140 | true 141 | 142 | 143 | 144 | color: rgb(255, 255, 255); 145 | background-color: qlineargradient(spread:pad, x1:0.284864, y1:0.233, x2:1, y2:1, stop:0 rgba(0, 0, 0, 255), stop:1 rgba(176, 165, 232, 255)); 146 | 147 | 148 | Issued Books 149 | 150 | 151 | 152 | 153 | 154 | 540 155 | 0 156 | 100 157 | 50 158 | 159 | 160 | 161 | 162 | 10 163 | 75 164 | true 165 | 166 | 167 | 168 | color: rgb(255, 255, 255); 169 | background-color: rgb(255, 0, 0); 170 | 171 | 172 | Log out 173 | 174 | 175 | 176 | 177 | 178 | 320 179 | 460 180 | 320 181 | 20 182 | 183 | 184 | 185 | background-color: rgb(0, 0, 0); 186 | color: rgb(255, 255, 255); 187 | 188 | 189 | Logged in at 190 | 191 | 192 | Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter 193 | 194 | 195 | 196 | 197 | 198 | 0 199 | 460 200 | 320 201 | 20 202 | 203 | 204 | 205 | background-color: rgb(0, 0, 0); 206 | color: rgb(255, 255, 255); 207 | 208 | 209 | Logged in by 210 | 211 | 212 | Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter 213 | 214 | 215 | 216 | 217 | 218 | 30 219 | 70 220 | 580 221 | 30 222 | 223 | 224 | 225 | 226 | 12 227 | 75 228 | true 229 | 230 | 231 | 232 | Give feedback 233 | 234 | 235 | Qt::AlignCenter 236 | 237 | 238 | 239 | 240 | 241 | 240 242 | 340 243 | 160 244 | 40 245 | 246 | 247 | 248 | 249 | 10 250 | 75 251 | true 252 | 253 | 254 | 255 | background-color: rgb(255, 170, 0); 256 | 257 | 258 | submit 259 | 260 | 261 | 262 | 263 | 264 | 50 265 | 140 266 | 540 267 | 170 268 | 269 | 270 | 271 | 272 | 10 273 | 75 274 | true 275 | 276 | 277 | 278 | color: rgb(0, 170, 0); 279 | background-color: rgb(255, 255, 255); 280 | border: 2px solid; 281 | border-color: rgb(0, 255, 0); 282 | 283 | 284 | Enter your feedback here 285 | 286 | 287 | 288 | 289 | 290 | 50 291 | 410 292 | 540 293 | 25 294 | 295 | 296 | 297 | 298 | 75 299 | true 300 | 301 | 302 | 303 | 304 | 305 | 306 | Qt::AlignCenter 307 | 308 | 309 | 310 | 311 | 312 | 313 | 314 | -------------------------------------------------------------------------------- /run/ui pages/member_home.ui: -------------------------------------------------------------------------------- 1 | 2 | 3 | MainWindow 4 | 5 | 6 | 7 | 0 8 | 0 9 | 640 10 | 480 11 | 12 | 13 | 14 | 15 | 640 16 | 480 17 | 18 | 19 | 20 | 21 | 640 22 | 480 23 | 24 | 25 | 26 | MainWindow 27 | 28 | 29 | 30 | 31 | 32 | 0 33 | 0 34 | 640 35 | 50 36 | 37 | 38 | 39 | background-color: rgb(0, 0, 0); 40 | color: rgb(255, 255, 255); 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 100 50 | 0 51 | 100 52 | 50 53 | 54 | 55 | 56 | 57 | 10 58 | 75 59 | true 60 | 61 | 62 | 63 | color: rgb(255, 255, 255); 64 | background-color: qlineargradient(spread:pad, x1:0.284864, y1:0.233, x2:1, y2:1, stop:0 rgba(0, 0, 0, 255), stop:1 rgba(176, 165, 232, 255)); 65 | 66 | 67 | Search book 68 | 69 | 70 | 71 | 72 | 73 | 0 74 | 0 75 | 100 76 | 50 77 | 78 | 79 | 80 | 81 | 14 82 | 75 83 | true 84 | 85 | 86 | 87 | color: rgb(255, 255, 255); 88 | background-color: rgb(0, 140, 186); 89 | 90 | 91 | Home 92 | 93 | 94 | Qt::AlignCenter 95 | 96 | 97 | 98 | 99 | 100 | 200 101 | 0 102 | 100 103 | 50 104 | 105 | 106 | 107 | 108 | 10 109 | 75 110 | true 111 | 112 | 113 | 114 | color: rgb(255, 255, 255); 115 | background-color: qlineargradient(spread:pad, x1:0.284864, y1:0.233, x2:1, y2:1, stop:0 rgba(0, 0, 0, 255), stop:1 rgba(176, 165, 232, 255)); 116 | 117 | 118 | Issued Books 119 | 120 | 121 | 122 | 123 | 124 | 300 125 | 0 126 | 100 127 | 50 128 | 129 | 130 | 131 | 132 | 10 133 | 75 134 | true 135 | 136 | 137 | 138 | color: rgb(255, 255, 255); 139 | background-color: qlineargradient(spread:pad, x1:0.284864, y1:0.233, x2:1, y2:1, stop:0 rgba(0, 0, 0, 255), stop:1 rgba(176, 165, 232, 255)); 140 | 141 | 142 | Feedback 143 | 144 | 145 | 146 | 147 | 148 | 540 149 | 0 150 | 100 151 | 50 152 | 153 | 154 | 155 | 156 | 10 157 | 75 158 | true 159 | 160 | 161 | 162 | color: rgb(255, 255, 255); 163 | background-color: rgb(255, 0, 0); 164 | 165 | 166 | Log out 167 | 168 | 169 | 170 | 171 | 172 | 320 173 | 460 174 | 320 175 | 20 176 | 177 | 178 | 179 | background-color: rgb(0, 0, 0); 180 | color: rgb(255, 255, 255); 181 | 182 | 183 | Logged in at 184 | 185 | 186 | Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter 187 | 188 | 189 | 190 | 191 | 192 | 0 193 | 50 194 | 200 195 | 410 196 | 197 | 198 | 199 | background-color: rgb(255, 170, 127); 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 0 209 | 460 210 | 320 211 | 20 212 | 213 | 214 | 215 | background-color: rgb(0, 0, 0); 216 | color: rgb(255, 255, 255); 217 | 218 | 219 | Logged in by 220 | 221 | 222 | Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter 223 | 224 | 225 | 226 | 227 | 228 | 10 229 | 220 230 | 180 231 | 40 232 | 233 | 234 | 235 | 236 | 10 237 | 75 238 | true 239 | 240 | 241 | 242 | background-color: rgb(170, 0, 255); 243 | color: rgb(255, 255, 255); 244 | 245 | 246 | Edit Details 247 | 248 | 249 | 250 | 251 | 252 | 250 253 | 120 254 | 340 255 | 30 256 | 257 | 258 | 259 | 260 | 12 261 | 75 262 | true 263 | 264 | 265 | 266 | Hello!! 267 | 268 | 269 | Qt::AlignCenter 270 | 271 | 272 | 273 | 274 | 275 | 230 276 | 140 277 | 380 278 | 50 279 | 280 | 281 | 282 | 283 | 14 284 | 75 285 | true 286 | 287 | 288 | 289 | [desg] [username] 290 | 291 | 292 | Qt::AlignCenter 293 | 294 | 295 | 296 | 297 | 298 | 230 299 | 220 300 | 380 301 | 30 302 | 303 | 304 | 305 | 306 | 10 307 | 75 308 | true 309 | 310 | 311 | 312 | color: rgb(170, 0, 127); 313 | 314 | 315 | Thank you for being a loyal member 316 | 317 | 318 | Qt::AlignCenter 319 | 320 | 321 | 322 | 323 | 324 | 230 325 | 300 326 | 380 327 | 20 328 | 329 | 330 | 331 | 332 | 10 333 | 75 334 | true 335 | 336 | 337 | 338 | Notice(s) 339 | 340 | 341 | Qt::AlignCenter 342 | 343 | 344 | 345 | 346 | 347 | 230 348 | 320 349 | 380 350 | 120 351 | 352 | 353 | 354 | background-color: rgba(255, 255, 255, 0); 355 | 356 | 357 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> 358 | <html><head><meta name="qrichtext" content="1" /><style type="text/css"> 359 | p, li { white-space: pre-wrap; } 360 | </style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> 361 | <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">No new notices</p></body></html> 362 | 363 | 364 | 365 | 366 | 367 | 368 | 369 | -------------------------------------------------------------------------------- /run/ui pages/member_template.ui: -------------------------------------------------------------------------------- 1 | 2 | 3 | MainWindow 4 | 5 | 6 | 7 | 0 8 | 0 9 | 640 10 | 480 11 | 12 | 13 | 14 | 15 | 640 16 | 480 17 | 18 | 19 | 20 | 21 | 640 22 | 480 23 | 24 | 25 | 26 | MainWindow 27 | 28 | 29 | 30 | 31 | 32 | 0 33 | 0 34 | 640 35 | 50 36 | 37 | 38 | 39 | background-color: rgb(0, 0, 0); 40 | color: rgb(255, 255, 255); 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 100 50 | 0 51 | 100 52 | 50 53 | 54 | 55 | 56 | 57 | 10 58 | 75 59 | true 60 | 61 | 62 | 63 | color: rgb(255, 255, 255); 64 | background-color: qlineargradient(spread:pad, x1:0.284864, y1:0.233, x2:1, y2:1, stop:0 rgba(0, 0, 0, 255), stop:1 rgba(176, 165, 232, 255)); 65 | 66 | 67 | Search book 68 | 69 | 70 | 71 | 72 | 73 | 0 74 | 0 75 | 100 76 | 50 77 | 78 | 79 | 80 | 81 | 14 82 | 75 83 | true 84 | 85 | 86 | 87 | color: rgb(255, 255, 255); 88 | background-color: rgb(0, 140, 186); 89 | 90 | 91 | Home 92 | 93 | 94 | Qt::AlignCenter 95 | 96 | 97 | 98 | 99 | 100 | 200 101 | 0 102 | 100 103 | 50 104 | 105 | 106 | 107 | 108 | 10 109 | 75 110 | true 111 | 112 | 113 | 114 | color: rgb(255, 255, 255); 115 | background-color: qlineargradient(spread:pad, x1:0.284864, y1:0.233, x2:1, y2:1, stop:0 rgba(0, 0, 0, 255), stop:1 rgba(176, 165, 232, 255)); 116 | 117 | 118 | Issued Books 119 | 120 | 121 | 122 | 123 | 124 | 300 125 | 0 126 | 100 127 | 50 128 | 129 | 130 | 131 | 132 | 10 133 | 75 134 | true 135 | 136 | 137 | 138 | color: rgb(255, 255, 255); 139 | background-color: qlineargradient(spread:pad, x1:0.284864, y1:0.233, x2:1, y2:1, stop:0 rgba(0, 0, 0, 255), stop:1 rgba(176, 165, 232, 255)); 140 | 141 | 142 | Feedback 143 | 144 | 145 | 146 | 147 | 148 | 540 149 | 0 150 | 100 151 | 50 152 | 153 | 154 | 155 | 156 | 10 157 | 75 158 | true 159 | 160 | 161 | 162 | color: rgb(255, 255, 255); 163 | background-color: rgb(255, 0, 0); 164 | 165 | 166 | Log out 167 | 168 | 169 | 170 | 171 | 172 | 320 173 | 460 174 | 320 175 | 20 176 | 177 | 178 | 179 | background-color: rgb(0, 0, 0); 180 | color: rgb(255, 255, 255); 181 | 182 | 183 | Logged in at 184 | 185 | 186 | Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter 187 | 188 | 189 | 190 | 191 | 192 | 0 193 | 50 194 | 200 195 | 410 196 | 197 | 198 | 199 | background-color: rgb(255, 170, 127); 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 0 209 | 460 210 | 320 211 | 20 212 | 213 | 214 | 215 | background-color: rgb(0, 0, 0); 216 | color: rgb(255, 255, 255); 217 | 218 | 219 | Logged in by 220 | 221 | 222 | Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter 223 | 224 | 225 | 226 | 227 | 228 | 10 229 | 220 230 | 180 231 | 40 232 | 233 | 234 | 235 | 236 | 10 237 | 75 238 | true 239 | 240 | 241 | 242 | background-color: rgb(170, 0, 255); 243 | color: rgb(255, 255, 255); 244 | 245 | 246 | Edit Details 247 | 248 | 249 | 250 | 251 | 252 | 230 253 | 350 254 | 380 255 | 30 256 | 257 | 258 | 259 | 260 | 10 261 | 75 262 | true 263 | 264 | 265 | 266 | color: rgb(85, 0, 127); 267 | 268 | 269 | If you can find something to read thank a librarian 270 | 271 | 272 | Qt::AlignCenter 273 | 274 | 275 | 276 | 277 | 278 | 250 279 | 140 280 | 340 281 | 30 282 | 283 | 284 | 285 | 286 | 12 287 | 75 288 | true 289 | 290 | 291 | 292 | Hello!! 293 | 294 | 295 | Qt::AlignCenter 296 | 297 | 298 | 299 | 300 | 301 | 230 302 | 290 303 | 380 304 | 30 305 | 306 | 307 | 308 | 309 | 10 310 | 75 311 | true 312 | 313 | 314 | 315 | color: rgb(0, 0, 127); 316 | 317 | 318 | Librarians do not retire they just get re-shelved 319 | 320 | 321 | Qt::AlignCenter 322 | 323 | 324 | 325 | 326 | 327 | 230 328 | 160 329 | 380 330 | 50 331 | 332 | 333 | 334 | 335 | 14 336 | 75 337 | true 338 | 339 | 340 | 341 | [desg] [username] 342 | 343 | 344 | Qt::AlignCenter 345 | 346 | 347 | 348 | 349 | 350 | 230 351 | 320 352 | 380 353 | 30 354 | 355 | 356 | 357 | 358 | 10 359 | 75 360 | true 361 | 362 | 363 | 364 | color: rgb(170, 0, 127); 365 | 366 | 367 | Librarian the orginal search engine 368 | 369 | 370 | Qt::AlignCenter 371 | 372 | 373 | 374 | 375 | 376 | 377 | 378 | -------------------------------------------------------------------------------- /run/ui pages/success_forgot.ui: -------------------------------------------------------------------------------- 1 | 2 | 3 | MainWindow 4 | 5 | 6 | 7 | 0 8 | 0 9 | 480 10 | 240 11 | 12 | 13 | 14 | 15 | 480 16 | 240 17 | 18 | 19 | 20 | 21 | 480 22 | 240 23 | 24 | 25 | 26 | MainWindow 27 | 28 | 29 | background-color: rgb(200, 255, 200); 30 | 31 | 32 | 33 | 34 | 35 | 10 36 | 200 37 | 460 38 | 30 39 | 40 | 41 | 42 | 43 | 10 44 | 75 45 | true 46 | 47 | 48 | 49 | background-color: rgb(0, 255, 0); 50 | 51 | 52 | Go to Home/ Login 53 | 54 | 55 | 56 | 57 | 58 | 10 59 | 70 60 | 460 61 | 61 62 | 63 | 64 | 65 | 66 | 10 67 | 75 68 | true 69 | 70 | 71 | 72 | background-color: rgba(255, 255, 255,0); 73 | 74 | 75 | For creating an acoount (desg) (your name) 76 | 77 | 78 | Qt::AlignCenter 79 | 80 | 81 | true 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | -------------------------------------------------------------------------------- /run/ui pages/success_register.ui: -------------------------------------------------------------------------------- 1 | 2 | 3 | MainWindow 4 | 5 | 6 | 7 | 0 8 | 0 9 | 480 10 | 240 11 | 12 | 13 | 14 | 15 | 480 16 | 240 17 | 18 | 19 | 20 | 21 | 480 22 | 240 23 | 24 | 25 | 26 | MainWindow 27 | 28 | 29 | background-color: rgb(200, 255, 200); 30 | 31 | 32 | 33 | 34 | 35 | 10 36 | 20 37 | 460 38 | 30 39 | 40 | 41 | 42 | 43 | 14 44 | 75 45 | true 46 | 47 | 48 | 49 | background-color: rgba(255, 255, 255,0); 50 | 51 | 52 | Thank You!! 53 | 54 | 55 | Qt::AlignCenter 56 | 57 | 58 | 59 | 60 | 61 | 10 62 | 200 63 | 460 64 | 30 65 | 66 | 67 | 68 | 69 | 10 70 | 75 71 | true 72 | 73 | 74 | 75 | background-color: rgb(0, 255, 0); 76 | 77 | 78 | Go to Home/ Login 79 | 80 | 81 | 82 | 83 | 84 | 10 85 | 70 86 | 460 87 | 61 88 | 89 | 90 | 91 | 92 | 10 93 | 75 94 | true 95 | 96 | 97 | 98 | background-color: rgba(255, 255, 255,0); 99 | 100 | 101 | For creating an acoount (desg) (your name) 102 | 103 | 104 | Qt::AlignCenter 105 | 106 | 107 | true 108 | 109 | 110 | 111 | 112 | 113 | 10 114 | 140 115 | 460 116 | 31 117 | 118 | 119 | 120 | 121 | 10 122 | 75 123 | true 124 | 125 | 126 | 127 | background-color: rgba(255, 255, 255,0); 128 | 129 | 130 | You can now login with your phone number as ID 131 | 132 | 133 | Qt::AlignCenter 134 | 135 | 136 | true 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | -------------------------------------------------------------------------------- /run/ui pages/success_update.ui: -------------------------------------------------------------------------------- 1 | 2 | 3 | MainWindow 4 | 5 | 6 | 7 | 0 8 | 0 9 | 480 10 | 240 11 | 12 | 13 | 14 | 15 | 480 16 | 240 17 | 18 | 19 | 20 | 21 | 480 22 | 240 23 | 24 | 25 | 26 | MainWindow 27 | 28 | 29 | background-color: rgb(200, 255, 200); 30 | 31 | 32 | 33 | 34 | 35 | 10 36 | 10 37 | 460 38 | 150 39 | 40 | 41 | 42 | 43 | 14 44 | 75 45 | true 46 | 47 | 48 | 49 | background-color: rgba(255, 255, 255,0); 50 | 51 | 52 | Successfully Updated !! 53 | 54 | 55 | Qt::AlignCenter 56 | 57 | 58 | 59 | 60 | 61 | 10 62 | 180 63 | 460 64 | 30 65 | 66 | 67 | 68 | 69 | 10 70 | 75 71 | true 72 | 73 | 74 | 75 | ArrowCursor 76 | 77 | 78 | background-color: rgb(0, 255, 0); 79 | 80 | 81 | Close and Back to Home 82 | 83 | 84 | false 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | -------------------------------------------------------------------------------- /run/unicodedata.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/unicodedata.pyd -------------------------------------------------------------------------------- /run/win32api.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/win32api.pyd -------------------------------------------------------------------------------- /run/win32evtlog.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/win32evtlog.pyd -------------------------------------------------------------------------------- /run/zlib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsutoshPati/Library-Management-System/58a2a6228263c3c8872962658e3ef20d870b5da5/run/zlib.dll --------------------------------------------------------------------------------