Skip to content

Commit

Permalink
Add QCrasherWorkspace class
Browse files Browse the repository at this point in the history
Signed-off-by: selfkilla666 <[email protected]>
  • Loading branch information
selfkilla666 committed Sep 28, 2024
1 parent ee575ee commit e74f396
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions crasher/core/widgets/workspace/workspace.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@

from __future__ import annotations

from typing import TYPE_CHECKING

from PySide6.QtWidgets import QWidget

import loguru

if TYPE_CHECKING:
from crasher.core.widgets.application import QCrasherApplication
from crasher.core.widgets.window import QCrasherWindow


class QCrasherWorkspace(QWidget):

application: QCrasherApplication
window: QCrasherWindow
logger: loguru.Logger

project: None

def __init__(self, window: QCrasherWindow, application: QCrasherApplication, *args, **kwargs) -> None:
super().__init__(window, *args, **kwargs)

self.application = application
self.window = window

self.initialize_ui()

def initialize_ui(self) -> None:
pass

def render_viewport(self) -> None:
pass

0 comments on commit e74f396

Please sign in to comment.