Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Last In First Out Multi Clipboard
#4
I also would choose a specialized application. Too much work would be to create it in QM, because there are so many clipboard formats.

This is simplest multilevel clipboard:

Function MultiClipCopy, trigger Ctrl+Shift+C
Code:
Copy      Help
ARRAY(str)+ g_mca
str& s=g_mca[g_mca.redim(-1)]
s.getsel

Function MultiClipPaste, trigger Ctrl+Shift+V
Code:
Copy      Help
ARRAY(str)+ g_mca
int i=g_mca.len-1
if(i<0) ret
str& s=g_mca[i]
s.setsel
g_mca.redim(i)


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)