Author Topic: Simple pop-up dialogue - is this the right approach  (Read 2879 times)

mhwombat

  • Making baby steps
  • Posts: 2
    • View Profile
Simple pop-up dialogue - is this the right approach
« on: November 06, 2008, 08:55:41 pm »
Caveat: I am totally new to LinuxMCE, although I have used Linux for years.

When a USB drive is plugged in, my client wants LinuxMCE to automatically check if it contains audio or video, and if so, display a dialogue asking the user if they want to copy the content. (Perhaps there is a way to just configure MCE to do this; if so, I would appreciate a link.) I have read wiki pages until my eyes are blurry, and I think this is what I have to do. Can someone tell me if I am on the right track?

Create a device or plug-in that will:
Tell the DCE router that it wants to be notified when a USB drive is plugged in - RegisterMsgInterceptor
Display the dialogue box.
If the user requests that the media be copied, send a message to some other device (via the DCE router) to tell it to start ripping.

...and I have to develop the dialogue box on a windows (ugh!) machine using HADesigner.

Originally I thought I would add some code to the hotplug scripts to launch a simple script to display the dialogue box and and launch the copy script/application if needed. But I have a feeling that might not play well with MCE.

bulek

  • Administrator
  • wants to work for LinuxMCE
  • *****
  • Posts: 909
  • Living with LMCE
    • View Profile
Re: Simple pop-up dialogue - is this the right approach
« Reply #1 on: November 06, 2008, 10:50:34 pm »
Hi,

I cannot help you fully, but I think that there are two advices welcome on start :
- everything under LMCE is Data,Command Event (DCE) - you can try to sniff logs when dialogues you're trying to reproduce happen
- I think there is possibility to start popup screen with question and two buttons - try on wiki and in logs ...

HTH,

regards,

Bulek.
Thanks in advance,

regards,

Bulek.

mhwombat

  • Making baby steps
  • Posts: 2
    • View Profile
Re: Simple pop-up dialogue - is this the right approach
« Reply #2 on: November 09, 2008, 02:30:21 pm »
It seems that the easiest way to create this plug-in is to use the DCEGen tool, which will create a class with stubs for the stuff I need to implement. Does that make sense, or have I misunderstood the purpose of DCEGen?




tschak909

  • LinuxMCE God
  • ****
  • Posts: 5549
  • DOES work for LinuxMCE.
    • View Profile
Re: Simple pop-up dialogue - is this the right approach
« Reply #3 on: November 10, 2008, 03:23:59 pm »
Correct.

-Thom