mainform w;
    w.psetup = new setup();
    w.connect( w.psetup, SIGNAL(current_weather(int)), &w, SLOT(showMainWeather(int)));
    请教:为什么调用emit( current_weather(weather_type) ); 之后程序停顿一下。
         
    void mainform::showMainWeather( int )它处理了一张图。
    怎么样能让showMainWeather()在后台运行,它emit( current_weather(weather_type))不停顿?????