QHBoxLayout buttonLayout = new QHBoxLayout();
buttonLayout.addStretch(1);
buttonLayout.addWidget(okButton);
setWindowTitle(tr("Share Notebook \"") +notebook.getName() + tr("\" With Others"));
table = new QTableWidget(notebooks.size(),3);
List<String> headers = new ArrayList<String>();
headers.add(tr("Email"));
headers.add(tr("Access"));
headers.add(tr("Login Required"));
table.setHorizontalHeaderLabels(headers);