I was wondering how could I integrate a USB barcode scanner into a Qt application, as well as a barcode printer.
I looked for tutorials but didn\'t find anything int
Most barcode scanners, IIRC basically work like a keyboard from the point of view of your application. You just provide a text field and the barcode reader "types" what it reads. So you don't really need to worry about that, other than validating the input and maybe providing a hidden text field if you don't want the input shown.
Or a modal dialog saying "scan item" with focus on a hidden text area.
In terms of a barcode printer, if you know the standard to which you are outputting, you would do well creating an SVG or PDF and exporting to print. This way your app can handle print dimensions and so on.
You don't say what language you are using, so I can't find you a barcode writing library.