Moved the additions folder into the gui folder as it only contains gui elements
This commit is contained in:
@@ -1,8 +0,0 @@
|
|||||||
# -*- coding: utf-8 -*-
|
|
||||||
from nw.additions.qconfiglayout import QConfigLayout
|
|
||||||
from nw.additions.qswitch import QSwitch
|
|
||||||
|
|
||||||
__all__ = [
|
|
||||||
"QConfigLayout",
|
|
||||||
"QSwitch",
|
|
||||||
]
|
|
||||||
@@ -1,5 +1,9 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
# Qt Additions
|
||||||
|
from nw.gui.additions.qconfiglayout import QConfigLayout
|
||||||
|
from nw.gui.additions.qswitch import QSwitch
|
||||||
|
|
||||||
# Main Window Elements
|
# Main Window Elements
|
||||||
from nw.gui.icons import GuiIcons
|
from nw.gui.icons import GuiIcons
|
||||||
from nw.gui.mainmenu import GuiMainMenu
|
from nw.gui.mainmenu import GuiMainMenu
|
||||||
@@ -33,6 +37,8 @@ from nw.gui.tools.optionstate import OptionState
|
|||||||
from nw.gui.tools.wordcounter import WordCounter
|
from nw.gui.tools.wordcounter import WordCounter
|
||||||
|
|
||||||
__all__ = [
|
__all__ = [
|
||||||
|
"QConfigLayout",
|
||||||
|
"QSwitch",
|
||||||
"GuiIcons",
|
"GuiIcons",
|
||||||
"GuiMainMenu",
|
"GuiMainMenu",
|
||||||
"GuiMainStatus",
|
"GuiMainStatus",
|
||||||
|
|||||||
@@ -0,0 +1,8 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
from nw.gui.additions.qconfiglayout import QConfigLayout
|
||||||
|
from nw.gui.additions.qswitch import QSwitch
|
||||||
|
|
||||||
|
__all__ = [
|
||||||
|
"QConfigLayout",
|
||||||
|
"QSwitch",
|
||||||
|
]
|
||||||
@@ -38,7 +38,7 @@ from PyQt5.QtWidgets import (
|
|||||||
QFileDialog
|
QFileDialog
|
||||||
)
|
)
|
||||||
|
|
||||||
from nw.additions import QSwitch, QConfigLayout
|
from nw.gui.additions import QSwitch, QConfigLayout
|
||||||
from nw.core import NWSpellCheck, NWSpellSimple, NWSpellEnchant
|
from nw.core import NWSpellCheck, NWSpellSimple, NWSpellEnchant
|
||||||
from nw.constants import nwAlert, nwQuotes
|
from nw.constants import nwAlert, nwQuotes
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user