Not logged in.  Login/Logout/Register | List snippets | | Create snippet | Upload image | Upload data

89
LINES

< > BotCompany Repo | #1020554 // VNC Viewer Tray Icon

JavaX source code (Dynamic Module) [tags: use-pretranspiled] - run with: Stefan's OS

Uses 1689K of libraries. Click here for Pure Java version (23720L/125K).

1  
!7
2  
3  
concept Profile {
4  
  S name, options;
5  
  S computerID; // to send clipboard etc (optional)
6  
  S passwordID; // global ID to send to #1029670
7  
8  
  bool hasPassword() { ret nempty(passwordID); }
9  
  bool hasComputerID() { ret nempty(computerID); }
10  
}
11  
12  
cmodule2 VNCViewerTrayIcon > DynCRUD<Profile> {
13  
  transient TrayIcon trayIcon;
14  
  switchable bool inProcess; // don't think true works yet
15  
  transient ReliableSingleThread rstMakeTrayIcon = dm_rst(this, r makeTrayIcon);
16  
17  
  SimpleCRUD<Profile> makeCRUD() {
18  
    var crud = super.makeCRUD();
19  
    //crud.editOnDoubleClick = false;
20  
    ret crud;
21  
  }
22  
  
23  
  start {
24  
    db();
25  
    onConceptsChangeAndNow(r { doLater(2.0, rstMakeTrayIcon) });
26  
  }
27  
28  
  void makeTrayIcon enter {
29  
    disposeTrayIcon(trayIcon);
30  
    new L menuItems; // no left-click action
31  
    for (Profile p : sortConceptsByID(list(Profile)))
32  
      if (nemptyAfterTrim(p.options))
33  
        addAll(menuItems, "VNC to " + p.name, rThread { launch(p) });
34  
    add(menuItems, "---");
35  
    L<Profile> withComputerID = filter(p -> p.hasComputerID(), list(Profile));
36  
    if (nempty(withComputerID)) {
37  
      for (Profile p : withComputerID) {
38  
        addAll(menuItems, "Send clipboard to " + p.name, rThreadEnter { dm_sendClipboardTo_verbose(p.computerID) });
39  
        addAll(menuItems, "Grab clipboard from " + p.name, rThreadEnter { dm_grabClipboardFrom_verbose(p.computerID) });
40  
      }
41  
      add(menuItems, "---");
42  
    }
43  
    addAll(menuItems, "VNC Viewer Connection Dialog", rThread { if (inProcess) launchVNCViewer_inProcess(); else launchVNCViewer() });
44  
    addAll(menuItems, "Edit Profiles...", rThread dm_activateOSAndModule);
45  
    pcall {
46  
      trayIcon = installTrayIcon(#1101468, "Start VNC Viewer", menuItems);
47  
    }
48  
  }
49  
  
50  
  afterVisualize {
51  
    // TODO: disable when at beginning/end of list
52  
    addSelectionDependentButton("Move Up", r {
53  
      Profile a = selected(), b = itemBefore(list(), a);
54  
      if (a != null && b != null)
55  
        swapConceptIDs(a, b);
56  
    });
57  
    addSelectionDependentButton("Move Down", r {
58  
      Profile a = selected(), b = itemAfter(list(), a);
59  
      if (a != null && b != null)
60  
        swapConceptIDs(a, b);
61  
    });
62  
    addSelectionDependentButton("Connect", rThread {
63  
      launch(selected());
64  
    });
65  
66  
    tablePopupMenu_first(table(), voidfunc(JPopupMenu menu, int row) {
67  
      Profile p = selected(), ret if null;
68  
      addMenuItem(menu, "Connect", r { launch(p) });
69  
      if (p.hasPassword())
70  
        addMenuItem(menu, "Copy password", rThreadEnter { copyPassword(p) });
71  
      if (p.hasComputerID())
72  
        addMenuItem(menu, "Send clipboard there", rThreadEnter { dm_sendClipboardTo_verbose(p.computerID) });
73  
    });
74  
  }
75  
76  
  void cleanMeUp {
77  
    disposeTrayIcon(trayIcon);
78  
  }
79  
80  
  void copyPassword(Profile p) {
81  
    dm_copyPasswordForGlobalIDToClipboard(p.passwordID);
82  
  }
83  
84  
  void launch(Profile p) {
85  
    if (p == null) ret;
86  
    copyPassword(p);
87  
    if (inProcess) launchVNCViewer_inProcess(p.options); else launchVNCViewer(p.options);
88  
  }
89  
}

download  show line numbers  debug dex  old transpilations   

Travelled to 9 computer(s): bhatertpkbcr, cfunsshuasjs, gwrvuhgaqvyk, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tvejysmllsmz, vouqrxazstgt, xrpafgyirdlv

No comments. add comment

Snippet ID: #1020554
Snippet name: VNC Viewer Tray Icon
Eternal ID of this version: #1020554/52
Text MD5: 987e04e916dd27f00f33cdf7d402f372
Transpilation MD5: 213fa6f7910838af9fcfb43c0e98e361
Author: stefan
Category: javax
Type: JavaX source code (Dynamic Module)
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2023-04-17 08:24:32
Source code size: 3061 bytes / 89 lines
Pitched / IR pitched: No / No
Views / Downloads: 405 / 12157
Version history: 51 change(s)
Referenced in: [show references]