63 lines
1.6 KiB
Python
63 lines
1.6 KiB
Python
"""
|
||
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 2018–2023, 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
|