hi, i have to ask again your help, this time with a more c++ related question than Qt, but i am a newbie also on that topic and I wish you can help me on this very stupid question

i made my qt application with only one big class, with all the methods:
Qt Code:
  1. class App : public QMainWindow, public Ui::AppDLG{
  2. public:
  3. App(QWidget *parent = 0);
  4. void readFileC(const QString &fileName);
  5. void update_comboBox(const QString &fileName,int type);
  6. QString norm(const QString &fileName,int type);
  7. QString norm_m(int type);
  8. ...
  9. public slots:
  10. void getPath();
  11. void mod_norm();
  12. void new_sensor();
  13. void del_sensor();
  14. ....
To copy to clipboard, switch view to plain text mode 

i need to split up in a second class the methods norm(...) and norm_m(...) , and the slots mod_norm(...), new_sensor(...) and del_sensor(...).

i don't know how to organize my .h and .cpp files.... so i'm asking you the help and "what to place and where", and also how i can call the new objects created using that new class.

also a link with useful examples of easy qt projects using several classes will be appreciated.

thanks in advance.......... i'm a very newbie