37 """ |
37 """ |
38 super(DjangoPage, self).__init__() |
38 super(DjangoPage, self).__init__() |
39 self.setupUi(self) |
39 self.setupUi(self) |
40 self.setObjectName("DjangoPage") |
40 self.setObjectName("DjangoPage") |
41 |
41 |
42 self.virtualEnvPy3Button.setIcon(UI.PixmapCache.getIcon("open.png")) |
42 self.virtualEnvPy3Button.setIcon(UI.PixmapCache.getIcon("open")) |
43 self.virtualEnvPy2Button.setIcon(UI.PixmapCache.getIcon("open.png")) |
43 self.virtualEnvPy2Button.setIcon(UI.PixmapCache.getIcon("open")) |
44 self.translationsButton.setIcon(UI.PixmapCache.getIcon("open.png")) |
44 self.translationsButton.setIcon(UI.PixmapCache.getIcon("open")) |
45 |
45 |
46 self.__virtualEnvPy3Completer = E5DirCompleter(self.virtualEnvPy3Edit) |
46 self.__virtualEnvPy3Completer = E5DirCompleter(self.virtualEnvPy3Edit) |
47 self.__virtualEnvPy2Completer = E5DirCompleter(self.virtualEnvPy2Edit) |
47 self.__virtualEnvPy2Completer = E5DirCompleter(self.virtualEnvPy2Edit) |
48 self.__translationsCompleter = E5FileCompleter(self.translationsEdit) |
48 self.__translationsCompleter = E5FileCompleter(self.translationsEdit) |
49 |
49 |