Exemplo n.º 1
0
        def standard():
            w = PantallaPGN.WFiltrar(self, self.grid.oColumnas, self.liFiltro, self.dbGames.nomFichero)
            if w.exec_():
                self.liFiltro = w.liFiltro

                self.where = w.where()
                self.dbGames.filterPV(xpv, self.where)
                refresh()
Exemplo n.º 2
0
    def tw_filtrar(self):
        w = PantallaPGN.WFiltrar(self, self.grid.oColumnas, self.liFiltro)
        if w.exec_():
            self.liFiltro = w.liFiltro

            self.where = w.where()
            self.dbGames.filter(self.where)
            self.grid.refresh()
            self.grid.gotop()
            self.updateStatus()
Exemplo n.º 3
0
        def standard():
            w = PantallaPGN.WFiltrar(self, self.grid.oColumnas, self.liFiltro)
            if w.exec_():
                self.liFiltro = w.liFiltro

                self.where = w.where()
                self.dbGames.filterPV(
                    self.summaryActivo["pv"] if self.summaryActivo else None,
                    self.where)
                self.grid.refresh()
                self.grid.gotop()
                self.updateStatus()