summaryrefslogtreecommitdiffstats
path: root/g-ed-it/commitDialog.py
blob: 0bc2007af687ab232132a3a7a4dc4b2a4338c305 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/usr/bin/env python
#-*- coding:utf-8 -*-

import os
import time
import subprocess

class CommitDialog (object):

	def __init__(self,glade_xml,plugin):
		self.glade_xml = glade_xml
		self.load_dialog()
		self.plugin = plugin
		pass
		
	def load_dialog(self):
		self.commit_dialog = self.glade_xml.get_widget("commit_dialog")
		self.commit_dialog.hide()
		self.commit_dialog.connect("delete_event", self.on_cancel_button_clicked)

		self.commit_button = self.glade_xml.get_widget("commit_button")
		self.commit_button.connect("clicked", self.on_commit_button_clicked)

		self.close_button = self.glade_xml.get_widget("cancel_button")
		self.close_button.connect("clicked", self.on_cancel_button_clicked)

		self.commit_text_box = self.glade_xml.get_widget("commit_text")
		self.commit_text_box.connect("insert-at-cursor", self.on_commit_text_changed)
		
	def run(self,window,fileURI, allFile):
		self.commit_dialog.set_transient_for(window)
		self.cwd = os.path.dirname(fileURI)
		if allFile:
			self.fileName = None
			templateMsg = subprocess.Popen(["git-status","-s"],stdout=subprocess.PIPE,cwd=self.cwd).communicate()[0]
		else:
			self.fileName = os.path.basename(fileURI)
			templateMsg = subprocess.Popen(["git-status","-s",self.fileName],stdout=subprocess.PIPE,cwd=self.cwd).communicate()[0]
		self.commit_text_box.get_buffer().set_text(templateMsg)
		self.commit_dialog.show()

	def on_cancel_button_clicked(self, close_button):
		self.commit_dialog.hide()
	
	def on_commit_button_clicked(self, close_button):
		commit_text_buffer = self.commit_text_box.get_buffer()
		commit_text = commit_text_buffer.get_text(commit_text_buffer.get_start_iter(),commit_text_buffer.get_end_iter())
		if self.fileName :
			subprocess.call(["git-commit","-m'"+commit_text+"'", self.fileName],stdout=subprocess.PIPE,cwd=self.cwd)
		else:
			subprocess.call(["git-commit","-m'"+commit_text+"'"],stdout=subprocess.PIPE,cwd=self.cwd)
		commit_text_buffer.set_text("")
		self.commit_dialog.hide()
		self.plugin.fast_update_ui()
		pass
		
	def on_commit_text_changed(self, commit_text_entry):
		pass