move files into a package structure
This commit is contained in:
@@ -12,7 +12,7 @@ from PySide6.QtGui import QMouseEvent
|
|||||||
from PySide6.QtWidgets import *
|
from PySide6.QtWidgets import *
|
||||||
|
|
||||||
import constants
|
import constants
|
||||||
from ScaledScrollBar import ScaledScrollBar
|
from raven.ui.ScaledScrollBar import ScaledScrollBar
|
||||||
from conversion import humanbytes
|
from conversion import humanbytes
|
||||||
from highlight_selection import HighlightSelection
|
from highlight_selection import HighlightSelection
|
||||||
from highlighted_range import HighlightedRange
|
from highlighted_range import HighlightedRange
|
||||||
|
|||||||
@@ -2,14 +2,15 @@ from PySide6.QtGui import QIcon
|
|||||||
from PySide6.QtWidgets import QDialog, QLineEdit, QLabel, QGridLayout, QCheckBox, QListWidget, QListWidgetItem, \
|
from PySide6.QtWidgets import QDialog, QLineEdit, QLabel, QGridLayout, QCheckBox, QListWidget, QListWidgetItem, \
|
||||||
QPushButton, QDialogButtonBox, QMessageBox, QSizePolicy
|
QPushButton, QDialogButtonBox, QMessageBox, QSizePolicy
|
||||||
|
|
||||||
from colorbutton import ColorButton
|
from raven.ui.colorbutton import ColorButton
|
||||||
from hbox import HBox
|
from raven.ui.hbox import HBox
|
||||||
from highlight_regex import HighlightRegex
|
from highlight_regex import HighlightRegex
|
||||||
from highlighting import Highlighting
|
from highlighting import Highlighting
|
||||||
from settings import Settings
|
from settings import Settings
|
||||||
|
|
||||||
from raven.i18n import _
|
from raven.i18n import _
|
||||||
|
|
||||||
|
|
||||||
class PayloadItem(QListWidgetItem):
|
class PayloadItem(QListWidgetItem):
|
||||||
def __init__(self, text: str, payload=None):
|
def __init__(self, text: str, payload=None):
|
||||||
super(PayloadItem, self).__init__(text)
|
super(PayloadItem, self).__init__(text)
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ from raven.plugins.domain.raction import RAction
|
|||||||
from raven.plugins.domain.rmenu import RMenu
|
from raven.plugins.domain.rmenu import RMenu
|
||||||
from settingsstore import SettingsStore
|
from settingsstore import SettingsStore
|
||||||
from highlightingdialog import HighlightingDialog
|
from highlightingdialog import HighlightingDialog
|
||||||
from tabs import Tabs
|
from raven.ui.tabs import Tabs
|
||||||
from urlutils import url_is_file
|
from urlutils import url_is_file
|
||||||
from functools import reduce
|
from functools import reduce
|
||||||
|
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ from PySide6.QtWidgets import *
|
|||||||
|
|
||||||
import constants
|
import constants
|
||||||
from label import Label
|
from label import Label
|
||||||
from vbox import VBox
|
from raven.ui.vbox import VBox
|
||||||
from raven.i18n import _
|
from raven.i18n import _
|
||||||
|
|
||||||
class AboutDialog(QDialog):
|
class AboutDialog(QDialog):
|
||||||
@@ -1,11 +1,11 @@
|
|||||||
import sys
|
import sys
|
||||||
from typing import Optional, Callable, Dict
|
from typing import Optional
|
||||||
|
|
||||||
from PySide6.QtCore import Qt
|
from PySide6.QtCore import Qt
|
||||||
from PySide6.QtWidgets import QDockWidget, QMessageBox
|
from PySide6.QtWidgets import QDockWidget, QMessageBox
|
||||||
|
|
||||||
import constants
|
import constants
|
||||||
from aboutdialog import AboutDialog
|
from raven.plugins.ravenlog.aboutdialog import AboutDialog
|
||||||
from raven.mainwindow import MainWindow
|
from raven.mainwindow import MainWindow
|
||||||
from raven.pluginbase import PluginBase
|
from raven.pluginbase import PluginBase
|
||||||
from raven.plugins.domain.menucontribution import MenuContribution
|
from raven.plugins.domain.menucontribution import MenuContribution
|
||||||
|
|||||||
0
raven/ui/__init__.py
Normal file
0
raven/ui/__init__.py
Normal file
Reference in New Issue
Block a user