Ejemplo n.º 1
0
 def reply(self, idstr, cidstr):
     wecase_new = NewpostWindow(action="reply", id=int(idstr), cid=int(cidstr))
     wecase_new.client = self.client
     wecase_new.exec_()
Ejemplo n.º 2
0
 def comment(self, idstr):
     wecase_new = NewpostWindow(action="comment", id=int(idstr))
     wecase_new.client = self.client
     wecase_new.exec_()
Ejemplo n.º 3
0
 def repost(self, idstr, text):
     wecase_new = NewpostWindow(action="retweet", id=int(idstr), text=text)
     wecase_new.client = self.client
     wecase_new.exec_()
Ejemplo n.º 4
0
 def postTweet(self):
     wecase_new = NewpostWindow()
     wecase_new.client = self.client
     wecase_new.exec_()
Ejemplo n.º 5
0
 def reply(self, idstr, cidstr):
     wecase_new = NewpostWindow(action="reply",
                                id=int(idstr),
                                cid=int(cidstr))
     wecase_new.client = self.client
     wecase_new.exec_()
Ejemplo n.º 6
0
 def repost(self, idstr, text):
     wecase_new = NewpostWindow(action="retweet", id=int(idstr), text=text)
     wecase_new.client = self.client
     wecase_new.exec_()
Ejemplo n.º 7
0
 def comment(self, idstr):
     wecase_new = NewpostWindow(action="comment", id=int(idstr))
     wecase_new.client = self.client
     wecase_new.exec_()
Ejemplo n.º 8
0
 def postTweet(self):
     wecase_new = NewpostWindow()
     wecase_new.client = self.client
     wecase_new.exec_()