-
Notifications
You must be signed in to change notification settings - Fork 72
/
source_tree_description
47 lines (46 loc) · 2.64 KB
/
source_tree_description
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
. (root)
├── Pictures (images with running application)
├── cmake (CMake modules for building)
└── src (MainWindow widget and the rest)
├── create_widgets (widgets for creation/setting virt_entities)
│ ├── common (for common)
│ ├── domain (for Domain)
│ ├── interface (for Iface)
│ ├── network (for Network)
│ ├── nwfilter (for NWFilters)
│ ├── secret (for Secret)
│ ├── snapshot (for Snapshot)
│ └── storage (for Storages)
├── dock_head_widgets (widgets for Dock head)
├── icons (Icon set)
├── log_dock (LogDock widget)
├── menubar (MenuBar widgets)
├── misc (miscellanious files)
├── proxy_widget (Proxy widget)
├── settings (Connection settings widget)
├── soft_touched (SoftTouched mode widgets)
├── ssh_tunnel (SSH tunnel thread object)
├── state_monitor (StateMonitor widget)
├── task_warehouse (TaskWarehouse widget)
├── translations (Translation files for QtVirtManager)
├── tray (Tray widget)
├── virt_objects (base libvirt entities)
│ ├── virt_connect (for virConnect)
│ │ └── connection_list (ConnectionList widgets)
│ ├── virt_domain (for virDomain)
│ ├── virt_interface (for virIface)
│ ├── virt_network (for virNetwork)
│ ├── virt_secret (for virSecret)
│ ├── virt_storage_pool (for virStoragePool)
│ ├── virt_storage_vol (for virStorageVol)
│ └── (parent classes for virt_objects)
├── vm_viewer (Viewer for virtual machines)
│ ├── krdc_vnc_qtonly (widgets for VNC viewer)
│ ├── lxc (LXC Viewer)
│ ├── qspice_widgets (wrapper for spice-glib-client)
│ ├── qterminal (terminal for LXC viewer)
│ ├── spice (Spice Viewer)
│ ├── translations (Translation files for QtRemoteViewer)
│ ├── vnc (VNC Viewer)
│ └── (parent classes for viewers)
└── wait_thread (Wait thread for close connections)