File size: 18,908 Bytes
06163ac
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
/**
 * CatOS Window Management Module
 * Handles window creation, positioning, resizing, and lifecycle
 */
class WindowManager {
    constructor(core) {
        this.core = core;
        this.windowInteractions = new WindowInteractions();
    }

    // Window Management
    createWindow(options) {
        const windowId = `window-${this.core.nextWindowId++}`;
        const window = document.createElement('div');
        window.className = 'window focused';
        window.id = windowId;
        window.innerHTML = `
            <div class="window-titlebar">
                <div class="window-title">
                    <span class="window-icon">${options.icon}</span>
                    ${options.title}
                </div>
                <div class="window-controls">
                    <button class="window-control minimize" data-action="minimize">−</button>
                    <button class="window-control maximize" data-action="maximize">□</button>
                    <button class="window-control close" data-action="close">×</button>
                </div>
            </div>
            <div class="window-content">
                ${options.content}
            </div>
            <div class="window-resize-handle resize-handle-n" data-direction="n"></div>
            <div class="window-resize-handle resize-handle-s" data-direction="s"></div>
            <div class="window-resize-handle resize-handle-e" data-direction="e"></div>
            <div class="window-resize-handle resize-handle-w" data-direction="w"></div>
            <div class="window-resize-handle resize-handle-ne" data-direction="ne"></div>
            <div class="window-resize-handle resize-handle-nw" data-direction="nw"></div>
            <div class="window-resize-handle resize-handle-se" data-direction="se"></div>
            <div class="window-resize-handle resize-handle-sw" data-direction="sw"></div>
        `;

        // Position window with smart cascade
        const offset = (this.core.nextWindowId - 2) * 30;
        const maxOffset = 200; // Prevent windows from going off-screen
        const actualOffset = offset % maxOffset;
        
        window.style.left = (100 + actualOffset) + 'px';
        window.style.top = (50 + actualOffset) + 'px';
        window.style.width = options.width || '600px';
        window.style.height = options.height || '400px';

        // Add to container
        document.getElementById('windows-container').appendChild(window);

        // Store window data
        this.core.windows.set(windowId, {
            element: window,
            title: options.title,
            icon: options.icon,
            appType: options.appType,
            minimized: false,
            maximized: false,
            eventHandlers: new Map() // Store event handlers for cleanup
        });

        // Setup window events
        this.setupWindowEvents(windowId);
        this.focusWindow(windowId);

        return windowId;
    }

    setupWindowEvents(windowId) {
        const window = this.core.windows.get(windowId);
        const element = window.element;
        
        // Window controls
        element.querySelectorAll('.window-control').forEach(btn => {
            btn.addEventListener('click', (e) => {
                e.stopPropagation();
                const action = btn.dataset.action;
                
                switch(action) {
                    case 'minimize':
                        this.minimizeWindow(windowId);
                        break;
                    case 'maximize':
                        this.toggleMaximizeWindow(windowId);
                        break;
                    case 'close':
                        this.closeWindow(windowId);
                        break;
                }
            });
        });

        // Window focus
        element.addEventListener('mousedown', () => {
            this.focusWindow(windowId);
        });

        // Window dragging
        const titlebar = element.querySelector('.window-titlebar');
        this.windowInteractions.setupDragging(windowId, element, titlebar, this.core);

        // Window resizing
        this.windowInteractions.setupResizing(windowId, element, this.core);
    }

    focusWindow(windowId) {
        // Unfocus all windows
        document.querySelectorAll('.window').forEach(w => {
            w.classList.remove('focused');
        });

        // Update taskbar
        document.querySelectorAll('.taskbar-app').forEach(app => {
            app.classList.remove('focused');
        });

        // Focus target window
        const window = this.core.windows.get(windowId);
        if (window) {
            window.element.classList.add('focused');
            this.core.focusedWindow = windowId;
            
            // Update taskbar
            const taskbarApp = document.querySelector(`[data-window-id="${windowId}"]`);
            if (taskbarApp) {
                taskbarApp.classList.add('focused');
            }
        }
    }

    minimizeWindow(windowId) {
        const window = this.core.windows.get(windowId);
        if (window) {
            window.element.classList.add('minimized');
            window.minimized = true;
            
            // Focus another window if this was focused
            if (this.core.focusedWindow === windowId) {
                this.core.focusedWindow = null;
                // Find another window to focus
                for (let [id, win] of this.core.windows) {
                    if (id !== windowId && !win.minimized) {
                        this.focusWindow(id);
                        break;
                    }
                }
            }
        }
    }

    toggleMaximizeWindow(windowId) {
        const window = this.core.windows.get(windowId);
        if (window) {
            if (window.maximized) {
                // Restore window
                window.element.classList.remove('maximized');
                window.maximized = false;
            } else {
                // Maximize window
                window.element.classList.add('maximized');
                window.maximized = true;
            }
        }
    }

    closeWindow(windowId) {
        const window = this.core.windows.get(windowId);
        if (window) {
            // Clean up event handlers
            this.windowInteractions.cleanup(windowId, window);
            
            // Remove from DOM
            window.element.remove();
            
            // Remove from taskbar
            const taskbarApp = document.querySelector(`[data-window-id="${windowId}"]`);
            if (taskbarApp) {
                taskbarApp.remove();
            }
            
            // Remove from memory
            this.core.windows.delete(windowId);
            
            // Focus another window if this was focused
            if (this.core.focusedWindow === windowId) {
                this.core.focusedWindow = null;
                // Find another window to focus
                for (let [id, win] of this.core.windows) {
                    if (!win.minimized) {
                        this.focusWindow(id);
                        break;
                    }
                }
            }
        }
    }

    addToTaskbar(windowId, app) {
        const taskbar = document.getElementById('taskbar-apps');
        const taskbarApp = document.createElement('div');
        taskbarApp.className = 'taskbar-app focused';
        taskbarApp.dataset.windowId = windowId;
        taskbarApp.innerHTML = `
            <span class="taskbar-app-icon">${app.icon}</span>
            <span class="taskbar-app-name">${app.title}</span>
        `;
        
        taskbarApp.addEventListener('click', () => {
            const window = this.core.windows.get(windowId);
            if (window) {
                if (window.minimized) {
                    // Restore window
                    window.element.classList.remove('minimized');
                    window.minimized = false;
                    this.focusWindow(windowId);
                } else if (this.core.focusedWindow === windowId) {
                    // If window is focused, minimize it
                    this.minimizeWindow(windowId);
                } else {
                    // If window exists but not focused, focus it
                    this.focusWindow(windowId);
                }
            }
        });
        
        taskbar.appendChild(taskbarApp);
    }


}

/**
 * Window Interactions Handler - Modular event handling for drag/resize
 */
class WindowInteractions {
    constructor() {
        this.activeWindows = new Map(); // Store per-window interaction state
    }

    setupDragging(windowId, element, handle, core) {
        const interaction = {
            isDragging: false,
            startMouseX: 0,
            startMouseY: 0,
            startWindowX: 0,
            startWindowY: 0,
            handlers: new Map()
        };

        const dragStart = (e) => {
            const window = core.windows.get(windowId);
            if (window && window.maximized) return;
            
            if (e.target === handle || (handle.contains(e.target) && !e.target.classList.contains('window-control'))) {
                e.preventDefault();
                interaction.isDragging = true;
                
                if (e.type === "touchstart") {
                    interaction.startMouseX = e.touches[0].clientX;
                    interaction.startMouseY = e.touches[0].clientY;
                } else {
                    interaction.startMouseX = e.clientX;
                    interaction.startMouseY = e.clientY;
                }
                
                const rect = element.getBoundingClientRect();
                interaction.startWindowX = rect.left;
                interaction.startWindowY = rect.top;
                
                document.body.classList.add('dragging');
                element.classList.add('being-dragged');
            }
        };

        const drag = (e) => {
            if (!interaction.isDragging) return;
            e.preventDefault();
            
            let currentMouseX, currentMouseY;
            if (e.type === "touchmove") {
                currentMouseX = e.touches[0].clientX;
                currentMouseY = e.touches[0].clientY;
            } else {
                currentMouseX = e.clientX;
                currentMouseY = e.clientY;
            }
            
            const deltaX = currentMouseX - interaction.startMouseX;
            const deltaY = currentMouseY - interaction.startMouseY;
            
            let newX = interaction.startWindowX + deltaX;
            let newY = interaction.startWindowY + deltaY;
            
            const maxX = window.innerWidth - element.offsetWidth;
            const maxY = window.innerHeight - element.offsetHeight - 48;
            
            newX = Math.max(0, Math.min(newX, maxX));
            newY = Math.max(0, Math.min(newY, maxY));
            
            requestAnimationFrame(() => {
                element.style.left = newX + "px";
                element.style.top = newY + "px";
            });
        };

        const dragEnd = () => {
            if (interaction.isDragging) {
                interaction.isDragging = false;
                document.body.classList.remove('dragging');
                element.classList.remove('being-dragged');
            }
        };

        // Store handlers for cleanup
        interaction.handlers.set('mousedown', dragStart);
        interaction.handlers.set('touchstart', dragStart);
        interaction.handlers.set('mousemove', drag);
        interaction.handlers.set('touchmove', drag);
        interaction.handlers.set('mouseup', dragEnd);
        interaction.handlers.set('touchend', dragEnd);

        // Add event listeners
        handle.addEventListener("mousedown", dragStart);
        handle.addEventListener("touchstart", dragStart);
        document.addEventListener("mousemove", drag);
        document.addEventListener("touchmove", drag);
        document.addEventListener("mouseup", dragEnd);
        document.addEventListener("touchend", dragEnd);

        this.activeWindows.set(windowId, interaction);
    }

    setupResizing(windowId, element, core) {
        const resizeHandles = element.querySelectorAll('.window-resize-handle');
        
        const interaction = {
            isResizing: false,
            resizeDirection: '',
            startX: 0, startY: 0,
            startWidth: 0, startHeight: 0,
            startLeft: 0, startTop: 0,
            handlers: new Map()
        };

        const resizeStart = (e) => {
            const windowData = core.windows.get(windowId);
            if (windowData && windowData.maximized) return;
            
            e.preventDefault();
            e.stopPropagation();
            
            interaction.isResizing = true;
            interaction.resizeDirection = e.target.dataset.direction;
            
            interaction.startX = e.clientX;
            interaction.startY = e.clientY;
            interaction.startWidth = parseInt(getComputedStyle(element).width, 10);
            interaction.startHeight = parseInt(getComputedStyle(element).height, 10);
            interaction.startLeft = parseInt(getComputedStyle(element).left, 10);
            interaction.startTop = parseInt(getComputedStyle(element).top, 10);
            
            element.classList.add('resizing');
            document.body.style.cursor = e.target.style.cursor;
            document.body.style.userSelect = 'none';
        };

        const resize = (e) => {
            if (!interaction.isResizing) return;
            e.preventDefault();
            
            const deltaX = e.clientX - interaction.startX;
            const deltaY = e.clientY - interaction.startY;
            
            let newWidth = interaction.startWidth;
            let newHeight = interaction.startHeight;
            let newLeft = interaction.startLeft;
            let newTop = interaction.startTop;
            
            if (interaction.resizeDirection.includes('e')) {
                newWidth = Math.max(300, interaction.startWidth + deltaX);
            }
            if (interaction.resizeDirection.includes('w')) {
                newWidth = Math.max(300, interaction.startWidth - deltaX);
                newLeft = interaction.startLeft + (interaction.startWidth - newWidth);
            }
            if (interaction.resizeDirection.includes('s')) {
                newHeight = Math.max(200, interaction.startHeight + deltaY);
            }
            if (interaction.resizeDirection.includes('n')) {
                newHeight = Math.max(200, interaction.startHeight - deltaY);
                newTop = interaction.startTop + (interaction.startHeight - newHeight);
            }
            
            const maxWidth = window.innerWidth - newLeft;
            const maxHeight = window.innerHeight - newTop - 48;
            
            newWidth = Math.min(newWidth, maxWidth);
            newHeight = Math.min(newHeight, maxHeight);
            
            requestAnimationFrame(() => {
                element.style.width = newWidth + 'px';
                element.style.height = newHeight + 'px';
                element.style.left = newLeft + 'px';
                element.style.top = newTop + 'px';
            });
        };

        const resizeEnd = () => {
            if (!interaction.isResizing) return;
            
            interaction.isResizing = false;
            interaction.resizeDirection = '';
            
            element.classList.remove('resizing');
            document.body.style.cursor = '';
            document.body.style.userSelect = '';
        };

        // Store handlers for cleanup
        interaction.handlers.set('resizeStart', resizeStart);
        interaction.handlers.set('resize', resize);
        interaction.handlers.set('resizeEnd', resizeEnd);

        // Add event listeners
        resizeHandles.forEach(handle => {
            handle.addEventListener('mousedown', resizeStart);
        });
        
        document.addEventListener('mousemove', resize);
        document.addEventListener('mouseup', resizeEnd);

        // Store resize interaction separately or merge with drag interaction
        if (this.activeWindows.has(windowId)) {
            // Merge with existing interaction
            const existing = this.activeWindows.get(windowId);
            existing.resizeInteraction = interaction;
        } else {
            this.activeWindows.set(windowId, { resizeInteraction: interaction });
        }
    }

    cleanup(windowId, windowData) {
        const interaction = this.activeWindows.get(windowId);
        if (interaction) {
            // Clean up drag handlers
            if (interaction.handlers) {
                const handles = windowData.element.querySelectorAll('.window-titlebar');
                handles.forEach(handle => {
                    if (interaction.handlers.has('mousedown')) {
                        handle.removeEventListener('mousedown', interaction.handlers.get('mousedown'));
                    }
                    if (interaction.handlers.has('touchstart')) {
                        handle.removeEventListener('touchstart', interaction.handlers.get('touchstart'));
                    }
                });
                
                // Clean up document listeners
                ['mousemove', 'touchmove', 'mouseup', 'touchend'].forEach(event => {
                    if (interaction.handlers.has(event)) {
                        document.removeEventListener(event, interaction.handlers.get(event));
                    }
                });
            }
            
            // Clean up resize handlers
            if (interaction.resizeInteraction) {
                const resizeHandles = windowData.element.querySelectorAll('.window-resize-handle');
                resizeHandles.forEach(handle => {
                    if (interaction.resizeInteraction.handlers.has('resizeStart')) {
                        handle.removeEventListener('mousedown', interaction.resizeInteraction.handlers.get('resizeStart'));
                    }
                });
                
                if (interaction.resizeInteraction.handlers.has('resize')) {
                    document.removeEventListener('mousemove', interaction.resizeInteraction.handlers.get('resize'));
                }
                if (interaction.resizeInteraction.handlers.has('resizeEnd')) {
                    document.removeEventListener('mouseup', interaction.resizeInteraction.handlers.get('resizeEnd'));
                }
            }
            
            this.activeWindows.delete(windowId);
        }
    }
}

// Export for use in main system
window.CatOSWindowManager = WindowManager;