コード例 #1
0
ファイル: WeCaseWindow.py プロジェクト: jueqingsizhe66/WeCase
 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
ファイル: WeCaseWindow.py プロジェクト: jueqingsizhe66/WeCase
 def comment(self, idstr):
     wecase_new = NewpostWindow(action="comment", id=int(idstr))
     wecase_new.client = self.client
     wecase_new.exec_()
コード例 #3
0
ファイル: WeCaseWindow.py プロジェクト: jueqingsizhe66/WeCase
 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
ファイル: WeCaseWindow.py プロジェクト: jueqingsizhe66/WeCase
 def postTweet(self):
     wecase_new = NewpostWindow()
     wecase_new.client = self.client
     wecase_new.exec_()
コード例 #5
0
ファイル: WeCaseWindow.py プロジェクト: sikisis/WeCase
 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
ファイル: WeCaseWindow.py プロジェクト: sikisis/WeCase
 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
ファイル: WeCaseWindow.py プロジェクト: sikisis/WeCase
 def comment(self, idstr):
     wecase_new = NewpostWindow(action="comment", id=int(idstr))
     wecase_new.client = self.client
     wecase_new.exec_()
コード例 #8
0
ファイル: WeCaseWindow.py プロジェクト: sikisis/WeCase
 def postTweet(self):
     wecase_new = NewpostWindow()
     wecase_new.client = self.client
     wecase_new.exec_()