finally implement proper clipping for texts
[enigma2.git] / lib / base / filepush.h
index 75037f6660ff95c35531dc8fcee4503ec6494cfa..35671cd6ef23146d3fb638018265bb0bb23241a0 100644 (file)
@@ -5,6 +5,7 @@
 #include <libsig_comp.h>
 #include <lib/base/message.h>
 #include <sys/types.h>
+#include <lib/base/rawfile.h>
 
 class iFilePushScatterGather
 {
@@ -20,6 +21,7 @@ public:
        void thread();
        void stop();
        void start(int sourcefd, int destfd);
+       int start(const char *filename, int destfd);
        
        void pause();
        void seek(int whence, off_t where);
@@ -33,7 +35,10 @@ public:
        
        enum { evtEOF, evtReadError, evtWriteError, evtUser };
        Signal1<void,int> m_event;
-       
+
+       void installSigUSR1Handler();
+       void before_set_thread_alive();
+
                /* you can send private events if you want */
        void sendEvent(int evt);
 protected:
@@ -43,9 +48,11 @@ private:
        int m_stop;
        unsigned char m_buffer[65536];
        int m_buf_start, m_buf_end;
-       int m_fd_source, m_fd_dest;
+       int m_fd_dest;
        int m_send_pvr_commit;
        
+       eRawFile m_raw_source;
+       
        eFixedMessagePump<int> m_messagepump;
        
        void recvEvent(const int &evt);