當前位置: 首頁>>代碼示例>>Python>>正文


Python curses.ACS_BLOCK屬性代碼示例

本文整理匯總了Python中curses.ACS_BLOCK屬性的典型用法代碼示例。如果您正苦於以下問題:Python curses.ACS_BLOCK屬性的具體用法?Python curses.ACS_BLOCK怎麽用?Python curses.ACS_BLOCK使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在curses的用法示例。


在下文中一共展示了curses.ACS_BLOCK屬性的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: write4bits

# 需要導入模塊: import curses [as 別名]
# 或者: from curses import ACS_BLOCK [as 別名]
def write4bits(self, bits, char_mode=False):

		self.stdscr.addch(self.cury, self.curx, curses.ACS_BLOCK if bits & 0x01 else ' ')
		self.setCursor(self.cury+1, self.curx)
		self.stdscr.addch(self.cury, self.curx, curses.ACS_BLOCK if bits & 0x02 else ' ')
		self.setCursor(self.cury+1, self.curx)
		self.stdscr.addch(self.cury, self.curx, curses.ACS_BLOCK if bits & 0x04 else ' ')
		self.setCursor(self.cury+1, self.curx)
		self.stdscr.addch(self.cury, self.curx, curses.ACS_BLOCK if bits & 0x08 else ' ')
		self.setCursor(self.cury+1, self.curx)
		self.stdscr.addch(self.cury, self.curx, curses.ACS_BLOCK if bits & 0x10 else ' ')
		self.setCursor(self.cury+1, self.curx)
		self.stdscr.addch(self.cury, self.curx, curses.ACS_BLOCK if bits & 0x20 else ' ')
		self.setCursor(self.cury+1, self.curx)
		self.stdscr.addch(self.cury, self.curx, curses.ACS_BLOCK if bits & 0x40 else ' ')
		self.setCursor(self.cury+1, self.curx)
		self.stdscr.addch(self.cury, self.curx, curses.ACS_BLOCK if bits & 0x80 else ' ')
		self.setCursor(self.cury+1, self.curx) 
開發者ID:dhrone,項目名稱:pydPiper,代碼行數:20,代碼來源:lcd_curses.py

示例2: hscrollbar

# 需要導入模塊: import curses [as 別名]
# 或者: from curses import ACS_BLOCK [as 別名]
def hscrollbar(self, window, x, y, width, color):
        window.addstr(y, x, "}", color)
        window.addstr(y + height - 1, x, '}', color)
        window.addch(y, int(x + 1 + progress * (width - 2)), curses.ACS_BLOCK, color) 
開發者ID:Battelle,項目名稱:sandsifter,代碼行數:6,代碼來源:gui.py

示例3: update

# 需要導入模塊: import curses [as 別名]
# 或者: from curses import ACS_BLOCK [as 別名]
def update(self, clear=True):
        if clear: self.clear()
        if self.hidden:
            self.clear()
            return False
        length_of_display = self.width + 1
        blocks_on_screen = length_of_display

        if self.label:
            label_str = self.translate_value()
            if isinstance(label_str, bytes):
                label_str = label_str.decode(self.encoding, 'replace')
            blocks_on_screen -= len(label_str)+3
            if self.do_colors():
                label_attributes = self.parent.theme_manager.findPair(self)
            else:
                label_attributes = curses.A_NORMAL
            self.add_line(
                self.rely, self.relx+blocks_on_screen+2,
                label_str,
                self.make_attributes_list(label_str, label_attributes),
                len(label_str)
                )
            
            # If want to handle neg. numbers, this line would need changing.
        blocks_to_fill = (float(self.value) / float(self.out_of)) * int(blocks_on_screen)
    
        if self.editing:
            self.parent.curses_pad.attron(curses.A_BOLD)
            #self.parent.curses_pad.bkgdset(curses.ACS_HLINE)
            #self.parent.curses_pad.bkgdset(">")
            #self.parent.curses_pad.bkgdset(curses.A_NORMAL)
            BACKGROUND_CHAR = ">"
            BARCHAR         = curses.ACS_HLINE
        else:
            self.parent.curses_pad.attroff(curses.A_BOLD)
            self.parent.curses_pad.bkgdset(curses.A_NORMAL)
            #self.parent.curses_pad.bkgdset(curses.ACS_HLINE)
            BACKGROUND_CHAR = curses.ACS_HLINE
            BARCHAR         = " "
        
    
        for n in range(blocks_on_screen):
            xoffset = self.relx
            if self.do_colors():
                self.parent.curses_pad.addch(self.rely,n+xoffset, BACKGROUND_CHAR, curses.A_NORMAL | self.parent.theme_manager.findPair(self))
            else:
                self.parent.curses_pad.addch(self.rely,n+xoffset, BACKGROUND_CHAR, curses.A_NORMAL)
    
        for n in range(int(blocks_to_fill)):
            if self.do_colors():
                if self.block_color:
                    self.parent.curses_pad.addch(self.rely,n+xoffset, BARCHAR, self.parent.theme_manager.findPair(self, self.block_color))
                else:
                    self.parent.curses_pad.addch(self.rely,n+xoffset, BARCHAR, curses.A_STANDOUT | self.parent.theme_manager.findPair(self))
            else:
                self.parent.curses_pad.addch(self.rely,n+xoffset, BARCHAR, curses.A_STANDOUT) #curses.ACS_BLOCK)

        self.parent.curses_pad.attroff(curses.A_BOLD)
        self.parent.curses_pad.bkgdset(curses.A_NORMAL) 
開發者ID:hexway,項目名稱:apple_bleee,代碼行數:62,代碼來源:wgslider.py


注:本文中的curses.ACS_BLOCK屬性示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。