예제 #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_()
예제 #2
0
 def comment(self, idstr):
     wecase_new = NewpostWindow(action="comment", id=int(idstr))
     wecase_new.client = self.client
     wecase_new.exec_()
예제 #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_()
예제 #4
0
 def postTweet(self):
     wecase_new = NewpostWindow()
     wecase_new.client = self.client
     wecase_new.exec_()
예제 #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_()
예제 #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_()
예제 #7
0
 def comment(self, idstr):
     wecase_new = NewpostWindow(action="comment", id=int(idstr))
     wecase_new.client = self.client
     wecase_new.exec_()
예제 #8
0
 def postTweet(self):
     wecase_new = NewpostWindow()
     wecase_new.client = self.client
     wecase_new.exec_()