-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_advanced_gui.py
More file actions
56 lines (51 loc) · 1.8 KB
/
test_advanced_gui.py
File metadata and controls
56 lines (51 loc) · 1.8 KB
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
47
48
49
50
51
52
53
54
55
56
#!/usr/bin/env python3
"""
Test the Advanced Animated GUI with Enhanced Visual Effects
"""
import sys
import os
import logging
# Add project paths
project_root = os.path.dirname(os.path.abspath(__file__))
sys.path.append(os.path.join(project_root, 'gui'))
def test_advanced_gui():
"""Test the advanced animated GUI"""
print("=" * 80)
print("🚀 ADVANCED ANIMATED DRIVER MONITORING SYSTEM")
print("=" * 80)
print("Launching enhanced GUI with advanced animations and features:")
print()
print("✨ NEW FEATURES:")
print(" 🎨 Modern glassmorphism design")
print(" 🌈 Smooth color transitions and gradients")
print(" 💫 Pulsing status indicators")
print(" 🔄 Animated borders and glows")
print(" 📹 Enhanced camera feed with effects")
print(" 🎯 Interactive click ripple effects")
print(" 🔍 Zoom in/out with smooth scaling")
print(" ✨ Visual effects toggle")
print(" 🎛️ Animated control buttons")
print(" 📊 Real-time performance indicators")
print(" 🔔 Enhanced alert animations")
print(" ⚙️ Smart detection presets")
print()
print("🎮 INTERACTIVE FEATURES:")
print(" • Click on camera feed for ripple effects")
print(" • Use zoom controls for camera zoom")
print(" • Toggle effects for enhanced visuals")
print(" • Watch status indicators pulse and glow")
print(" • Enjoy smooth hover animations on buttons")
print()
print("Starting advanced GUI...")
print()
try:
from main_gui import main
main()
except KeyboardInterrupt:
print("\n🛑 GUI closed by user")
except Exception as e:
print(f"\n❌ Error: {e}")
import traceback
traceback.print_exc()
if __name__ == "__main__":
test_advanced_gui()