Add a custom widgets subpackage

This commit is contained in:
Veronica Berglyd Olsen
2023-02-21 16:06:41 +01:00
parent 06407a44d3
commit 7a60d8d867
16 changed files with 677 additions and 554 deletions
+62
View File
@@ -0,0 +1,62 @@
"""
novelWriter Custom Widget: Paged SideBar
==========================================
A custom widget for making a sidebar for flipping through pages
File History:
Created: 2023-02-21 [2.1b1] NPagedSideBar
Created: 2023-02-21 [2.1b1] NToolLabelButton
This file is a part of novelWriter
Copyright 20182023, Veronica Berglyd Olsen
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
"""
from PyQt5.QtCore import Qt
from PyQt5.QtWidgets import QToolBar, QToolButton
class NPagedSideBar(QToolBar):
def __init__(self, parent):
super().__init__(parent=parent)
self._buttons = []
self.setMovable(False)
self.setOrientation(Qt.Vertical)
return
def addLabel(self, text):
"""Add a new label to the toolbar.
"""
return
def addButton(self, text):
"""Add a new button to the toolbar.
"""
return
# END Class NPagedSideBar
class NToolLabelButton(QToolButton):
def __init__(self, parent):
super().__init__(parent=parent)
return
# END Class NToolLabelButton