PDA

View Full Version : hook



incapacitant
29th August 2006, 14:56
i want to write a hook for parental control.
is it possible with Qt ?
thank you:crying:

e8johan
29th August 2006, 15:01
I think that you will have to be a bit more specific than that. What is it that you want to do? Write a firewall that protects you from "bad" internet sites, or a plugin for a browser that does that? Or something completely different?

incapacitant
29th August 2006, 16:06
make sure my children don't access weird sites or talk to weird people on msn.

wysota
29th August 2006, 19:53
Qt won't help you with it much. Doing what you want requires tight integration with the operating system, because all flowing packets need to be passed through the application. You have to use the Windows standard API for doing such things. Then, when you have access to the packets, you can use Qt API to do the filtering.