move files into a package structure

This commit is contained in:
2022-02-06 15:55:27 +01:00
parent 111c11d5d4
commit 8bb4ca0563
11 changed files with 8 additions and 7 deletions

View File

@@ -12,7 +12,7 @@ from PySide6.QtGui import QMouseEvent
from PySide6.QtWidgets import *
import constants
from ScaledScrollBar import ScaledScrollBar
from raven.ui.ScaledScrollBar import ScaledScrollBar
from conversion import humanbytes
from highlight_selection import HighlightSelection
from highlighted_range import HighlightedRange

View File

@@ -2,14 +2,15 @@ from PySide6.QtGui import QIcon
from PySide6.QtWidgets import QDialog, QLineEdit, QLabel, QGridLayout, QCheckBox, QListWidget, QListWidgetItem, \
QPushButton, QDialogButtonBox, QMessageBox, QSizePolicy
from colorbutton import ColorButton
from hbox import HBox
from raven.ui.colorbutton import ColorButton
from raven.ui.hbox import HBox
from highlight_regex import HighlightRegex
from highlighting import Highlighting
from settings import Settings
from raven.i18n import _
class PayloadItem(QListWidgetItem):
def __init__(self, text: str, payload=None):
super(PayloadItem, self).__init__(text)

View File

@@ -13,7 +13,7 @@ from raven.plugins.domain.raction import RAction
from raven.plugins.domain.rmenu import RMenu
from settingsstore import SettingsStore
from highlightingdialog import HighlightingDialog
from tabs import Tabs
from raven.ui.tabs import Tabs
from urlutils import url_is_file
from functools import reduce

View File

@@ -7,7 +7,7 @@ from PySide6.QtWidgets import *
import constants
from label import Label
from vbox import VBox
from raven.ui.vbox import VBox
from raven.i18n import _
class AboutDialog(QDialog):

View File

@@ -1,11 +1,11 @@
import sys
from typing import Optional, Callable, Dict
from typing import Optional
from PySide6.QtCore import Qt
from PySide6.QtWidgets import QDockWidget, QMessageBox
import constants
from aboutdialog import AboutDialog
from raven.plugins.ravenlog.aboutdialog import AboutDialog
from raven.mainwindow import MainWindow
from raven.pluginbase import PluginBase
from raven.plugins.domain.menucontribution import MenuContribution

0
raven/ui/__init__.py Normal file
View File