comparison src/com/five_ten_sg/connectbot/util/HostDatabase.java @ 241:8b68dfb283d2

add host preference for fixed screen size
author Carl Byington <carl@five-ten-sg.com>
date Mon, 14 Jul 2014 10:25:29 -0700
parents bd803721f94a
children 91a31873c42a
comparison
equal deleted inserted replaced
240:9b011e1c57f3 241:8b68dfb283d2
392 host.setPostLogin(c.getString(COL_POSTLOGIN)); 392 host.setPostLogin(c.getString(COL_POSTLOGIN));
393 host.setPubkeyId(c.getLong(COL_PUBKEYID)); 393 host.setPubkeyId(c.getLong(COL_PUBKEYID));
394 host.setDelKey(c.getString(COL_DELKEY)); 394 host.setDelKey(c.getString(COL_DELKEY));
395 host.setFontSize(c.getFloat(COL_FONTSIZE)); 395 host.setFontSize(c.getFloat(COL_FONTSIZE));
396 host.setFixedSize(Boolean.valueOf(c.getString(COL_FIXEDSIZE))); 396 host.setFixedSize(Boolean.valueOf(c.getString(COL_FIXEDSIZE)));
397 host.setFixedWidth(c.getLong(COL_FIXEDWIDTH)); 397 host.setFixedWidth(c.getInt(COL_FIXEDWIDTH));
398 host.setFixedHeight(c.getLong(COL_FIXEDHEIGHT)); 398 host.setFixedHeight(c.getInt(COL_FIXEDHEIGHT));
399 host.setWantSession(Boolean.valueOf(c.getString(COL_WANTSESSION))); 399 host.setWantSession(Boolean.valueOf(c.getString(COL_WANTSESSION)));
400 host.setCompression(Boolean.valueOf(c.getString(COL_COMPRESSION))); 400 host.setCompression(Boolean.valueOf(c.getString(COL_COMPRESSION)));
401 host.setHttpproxy(c.getString(COL_HTTPPROXY)); 401 host.setHttpproxy(c.getString(COL_HTTPPROXY));
402 host.setEncoding(c.getString(COL_ENCODING)); 402 host.setEncoding(c.getString(COL_ENCODING));
403 host.setStayConnected(Boolean.valueOf(c.getString(COL_STAYCONNECTED))); 403 host.setStayConnected(Boolean.valueOf(c.getString(COL_STAYCONNECTED)));